add test for [ruby-dev:31437].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-08-16 10:21:49 +00:00
parent 9a26bd3f57
commit 5fe865d0ac
1 changed files with 7 additions and 0 deletions

View File

@ -410,3 +410,10 @@ o = 1
o = [o, o]
}; $ans
}
assert_equal '0', %q{
def m()
yield [0]
end
m {|*,v| v}.inspect
}, '[ruby-dev:31437]'