From 9c2c2f77ba4b346e99f00862ac6340ff1a33a82c Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 9 Jan 2018 12:33:38 +0000 Subject: parse.y: insane syntax * parse.y (primary): save/restore COND and CMDARG stacks at method definition, to distinguish do_block and do_cond properly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61724 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_syntax.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb index 57ce169cd3..bf9f4998ac 100644 --- a/test/ruby/test_syntax.rb +++ b/test/ruby/test_syntax.rb @@ -1181,6 +1181,11 @@ eom assert_equal(line, e.backtrace_locations[0].lineno) end + def test_methoddef_in_cond + assert_valid_syntax('while def foo; tap do end; end; break; end') + assert_valid_syntax('while def foo a = tap do end; end; break; end') + end + private def not_label(x) @result = x; @not_label ||= nil end -- cgit v1.2.3