summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/t/syntax.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/t/syntax.rb b/test/t/syntax.rb
index a89432b68..87edfb271 100644
--- a/test/t/syntax.rb
+++ b/test/t/syntax.rb
@@ -730,10 +730,19 @@ assert('argument forwarding') do
assert_equal(a,1)
a0(1,...)
end
+ def c ...
+ a(...)
+ end
+ def d a,...
+ assert_equal(a,1)
+ b(1,...)
+ end
}
o = c.new
o.a(1,2,3){}
o.b(1,2,3){}
+ o.c(1,2,3){}
+ o.d(1,2,3){}
end
assert('endless def') do