summaryrefslogtreecommitdiff
path: root/bootstraptest/pending.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bootstraptest/pending.rb')
-rw-r--r--bootstraptest/pending.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/bootstraptest/pending.rb b/bootstraptest/pending.rb
index 30c241619f..b894fb6b04 100644
--- a/bootstraptest/pending.rb
+++ b/bootstraptest/pending.rb
@@ -13,3 +13,20 @@ assert_equal 'A', %q{
B.new.a = 'B'
A.new.a
}, '[ruby-core:17019]'
+
+assert_equal 'ok', %q{
+ def m
+ lambda{
+ proc{
+ return :ng1
+ }
+ }.call.call
+ :ng2
+ end
+
+ begin
+ m()
+ rescue LocalJumpError
+ :ok
+ end
+}