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

assert_equal 'false', %q{
  x = Object.new.taint
  class << x
    def to_s; "foo".freeze; end
  end
  x.taint
  [x].join("")
  eval '"foo".freeze.tainted?'
}