summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-17 19:29:38 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-17 19:29:38 +0000
commitf98e6b91dec68ddd010ccb3bad651a18e7dca338 (patch)
tree51ff7ba40cca3b8d1682410dac86da53b19f4c68 /bootstraptest
parent00e4fd42f36fa23de04cccb9cea3c3e5d14c9ae9 (diff)
* KNOWNBUGS.rb, bootstraptest/pending.rb: move pending bug.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/pending.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/bootstraptest/pending.rb b/bootstraptest/pending.rb
index e69de29bb2..30c241619f 100644
--- a/bootstraptest/pending.rb
+++ b/bootstraptest/pending.rb
@@ -0,0 +1,15 @@
+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]'