mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
6527bcfe30
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13262 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
16 lines
294 B
Ruby
16 lines
294 B
Ruby
#
|
|
# This test file concludes tests which point out known bugs.
|
|
# So all tests will cause failure.
|
|
#
|
|
|
|
# massign
|
|
assert_equal '[0,1,{2=>3}]', '[0,*[1],2=>3]', "[ruby-dev:31592]"
|
|
|
|
assert_equal 'ok', %q{
|
|
def m()
|
|
yield :ng
|
|
end
|
|
r = :ok
|
|
m {|(r)|}
|
|
r
|
|
}, '[ruby-dev:31507]'
|