diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb index 1db1401199..8e508da451 100644 --- a/bootstraptest/test_knownbug.rb +++ b/bootstraptest/test_knownbug.rb @@ -200,3 +200,12 @@ assert_normal_exit %q{ defined? C && 0 } +assert_normal_exit %q{ + class C + def m + defined?(super()) + end + end + C.new.m +} +