summaryrefslogtreecommitdiff
path: root/bootstraptest/test_knownbug.rb
blob: 94b928127f21baa91767ff7933cca52cb7f1c23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# 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]'