summaryrefslogtreecommitdiff
path: root/bootstraptest/test_attr.rb
diff options
context:
space:
mode:
-rw-r--r--bootstraptest/test_attr.rb16
1 files changed, 0 insertions, 16 deletions
@@ -34,19 +34,3 @@ assert_equal %{ok}, %{
print "ok"
end
}, '[ruby-core:15120]'
-
-assert_equal %{ok}, %{
- class Big
- attr_reader :foo
- def initialize
- @foo = "ok"
- end
- end
-
- obj = Big.new
- 100.times do |i|
- obj.instance_variable_set(:"@ivar_\#{i}", i)
- end
-
- Big.new.foo
-}