From a8dec34961d7734ad975e44efa8aae361a1c4f5a Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 2 Jan 2023 22:53:14 -0800 Subject: Implement initial opt_lt --- bootstraptest/test_mjit.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bootstraptest') 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') +} -- cgit v1.2.1