diff options
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_method.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bootstraptest/test_method.rb b/bootstraptest/test_method.rb index 0a7cb0a577..749874cc5a 100644 --- a/bootstraptest/test_method.rb +++ b/bootstraptest/test_method.rb @@ -922,22 +922,6 @@ assert_equal 'ok', %q{ }, '[ruby-core:11998]' assert_equal 'ok', %q{ - proc{ - $SAFE = 3 - class C - def m - :ng - end - end - }.call - begin - C.new.m - rescue SecurityError - :ok - end -}, '[ruby-core:11998]' - -assert_equal 'ok', %q{ class B def m() :fail end end |