summaryrefslogtreecommitdiff
path: root/test/ruby/test_syntax.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-14 07:28:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-14 07:28:36 +0000
commit45f6cdcdd3d11de1bf7691f732bc967880b4caad (patch)
tree4b6ec9f40a3d7aaf03cf1a05e0e09e8bb72e6769 /test/ruby/test_syntax.rb
parentc80308119b134e63fbc776aca077118ce3e7db4c (diff)
Bug #6403: reset states after empty args
* parse.y (f_arglist): should reset lexical states after empty argument list with no parenthesis as well as parenthesized list, so that reserved name method definition work. [ruby-dev:45626] [Bug #6403] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_syntax.rb')
-rw-r--r--test/ruby/test_syntax.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index b792858090..7eef6d6066 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -176,6 +176,11 @@ class TestSyntax < Test::Unit::TestCase
assert_valid_syntax("p begin 1.times do 1 end end", __FILE__, bug6419)
end
+ def test_reserved_method_no_args
+ bug6403 = '[ruby-dev:45626]'
+ assert_valid_syntax("def self; :foo; end", __FILE__, bug6403)
+ end
+
private
def not_label(x) @result = x; @not_label ||= nil end