1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
ko1 2008-06-17 19:29:38 +00:00
parent 00e4fd42f3
commit f98e6b91de
3 changed files with 19 additions and 15 deletions

View file

@ -1,3 +1,7 @@
Wed Jun 18 04:27:58 2008 Koichi Sasada <ko1@atdot.net>
* KNOWNBUGS.rb, bootstraptest/pending.rb: move pending bug.
Wed Jun 18 04:24:20 2008 Koichi Sasada <ko1@atdot.net>
* vm.c, vm_insnhelper.c: fix escape process with "braek" and "return"

View file

@ -3,18 +3,3 @@
# So all tests will cause failure.
#
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
}

View file

@ -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]'