Details
Description
a = [1,2] b = *a, 2 p b
This should equal '[1, 2, 2]' but is [[1,2], 2]. I need splats working properly on 1.9 so I can copy this logic in refactoring case/when nodes in 1.8 so I may as well fix this sooner than later. If splat is later in the chain then there is no issue.
Fixed in compiler in r8747.