From 5d1f152fa342f6bb5fa9b546e3971843ee81c6b1 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 2 Nov 2014 18:40:45 +0000 Subject: * test/ruby/test_method.rb: r48239 makes this test green. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_method.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test') diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index 056b3a5437..97cc43071a 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -856,4 +856,13 @@ class TestMethod < Test::Unit::TestCase m = assert_nothing_raised(NameError, Feature9781) {break m.super_method} assert_nil(m, Feature9781) end + + def rest_parameter(*rest) + rest + end + + def test_splat_long_array + n = 10_000_000 + assert_equal n , rest_parameter(*(1..n)).size, '[Feature #10440]' + end end -- cgit v1.2.3