summaryrefslogtreecommitdiff
path: root/trunk/bootstraptest/pending.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/bootstraptest/pending.rb')
-rw-r--r--trunk/bootstraptest/pending.rb39
1 files changed, 0 insertions, 39 deletions
diff --git a/trunk/bootstraptest/pending.rb b/trunk/bootstraptest/pending.rb
deleted file mode 100644
index 744c0adac1..0000000000
--- a/trunk/bootstraptest/pending.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-assert_equal 'A', %q{
- class A
- @@a = 'A'
- def a=(x)
- @@a = x
- end
- def a
- @@a
- end
- end
-
- B = A.dup
- 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
-}
-
-assert_normal_exit %q{
- r = Range.allocate
- def r.<=>(o) true end
- r.instance_eval { initialize r, r }
- r.inspect
-}