aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_syntax.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-27 06:57:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-27 06:57:34 +0000
commita42be1e048e9dc7eb5e0453beea678dea95e5194 (patch)
tree7c657a90b1ea8f6f7fd830a695d9332cedce2d98 /test/ruby/test_syntax.rb
parentadeb6795e9e6334760d77b510ec52b28b0a35280 (diff)
downloadruby-a42be1e048e9dc7eb5e0453beea678dea95e5194.tar.gz
fix return in toplevel rescue/ensure
* compile.c (iseq_compile_each0): throw TAG_RETURN at return in toplevel rescue/ensure to adjust VM stack properly. [ruby-core:81777] [Bug #13682] * vm_insnhelper.c (vm_throw_start): allow return in toplevel rescue/ensure. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_syntax.rb')
-rw-r--r--test/ruby/test_syntax.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index 243d381e7e..57e0b29162 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -976,6 +976,7 @@ eom
return 1; raise
"#{return}"
raise((return; "should not raise"))
+ begin raise; ensure return; end; self
end;
all_assertions(feature4840) do |a|
code.each_line do |s|