summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_mjit.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/bootstraptest/test_mjit.rb b/bootstraptest/test_mjit.rb
index af5b14e50a..420b15aa19 100644
--- a/bootstraptest/test_mjit.rb
+++ b/bootstraptest/test_mjit.rb
@@ -2,3 +2,9 @@ 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')
+}