aboutsummaryrefslogtreecommitdiffstats
path: root/KNOWNBUGS.rb
blob: 3db710a73a321732406c2bcb4a6f16601832e2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#

assert_equal 'ok', %q{
  class Foo
    define_method(:foo) do |&b|
      b.call
    end
  end
  Foo.new.foo do
    break :ok
  end
}, '[ruby-dev:36028]'