From 7af3e9f08b6f277b7f96d7ed2a0115d1452d98cc Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 16 Mar 2012 08:42:16 +0000 Subject: fix unreachable warning line number * parse.y (block_append_gen): fix unreachable warning line number. should warn at the code, not jump. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_syntax.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test') diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb index 8be81dcb4d..51a0f355f8 100644 --- a/test/ruby/test_syntax.rb +++ b/test/ruby/test_syntax.rb @@ -96,6 +96,13 @@ class TestSyntax < Test::Unit::TestCase end end + def test_warn_unreachable + assert_warn("test:3: warning: statement not reached\n") do + code = "loop do\n" "break\n" "foo\n" "end" + assert_valid_syntax(code, "test") {$VERBOSE = true} + end + end + private def make_tmpsrc(f, src) -- cgit v1.2.3