summaryrefslogtreecommitdiff
path: root/bootstraptest/test_mjit.rb
blob: 420b15aa19e74e1aefba6add1009e795edf7e861 (plain)
1
2
3
4
5
6
7
8
9
10
assert_equal 'true', %q{
  def nil_nil = nil == nil
  nil_nil
}

assert_equal 'true', %q{
  def lt(a, b) = a < b
  lt(1, 2)
  lt('a', 'b')
}