This test in mri test suite shows it (and quite a bit more): ``` ruby pr = proc {|a=:a,b=:b,c=:c,d,e| [a,b,c,d,e] } p pr.call([1,2,3,4,5,6]) ``` recv_post_arg incorrectly binds d and e to 5,6 instead of 4,5.