summaryrefslogtreecommitdiff
path: root/test/ruby/test_call.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-22 00:52:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-22 00:52:59 +0000
commitd506a3521c7ebec78bf1aa2f0015c6cafb785f99 (patch)
tree21dd3bba19b8f6453c4936060b6b1b12f9a7cc11 /test/ruby/test_call.rb
parente1ff9d68abc8bfa2fe6d02f53e9bd09d022a3a97 (diff)
compile.c: order with splatting
* compile.c (setup_args): duplicate splatting array if more arguments present to obey left-to-right execution order. [ruby-core:77701] [Bug# 12860] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56469 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_call.rb')
-rw-r--r--test/ruby/test_call.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_call.rb b/test/ruby/test_call.rb
index fb79eadb64..4496d78210 100644
--- a/test/ruby/test_call.rb
+++ b/test/ruby/test_call.rb
@@ -90,4 +90,12 @@ class TestCall < Test::Unit::TestCase
h[:foo] = nil
}
end
+
+ def test_call_splat_order
+ bug12860 = '[ruby-core:77701] [Bug# 12860]'
+ ary = [1, 2]
+ assert_equal([1, 2, 1], aaa(*ary, ary.shift), bug12860)
+ ary = [1, 2]
+ assert_equal([0, 1, 2, 1], aaa(0, *ary, ary.shift), bug12860)
+ end
end