diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-10-24 01:06:59 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-11-12 17:24:48 +0900 |
commit | fb6a489af2765a3b56e301adf0019af6bbad6156 (patch) | |
tree | c024078f3a408d33e41aec446e17f5142907eb87 /test/ruby/test_jit.rb | |
parent | b41a19f92fdd9c8567e0650ceebb72386a96e395 (diff) |
Revert "Method reference operator"
This reverts commit 67c574736912003c377218153f9d3b9c0c96a17b.
[Feature #16275]
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r-- | test/ruby/test_jit.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index 803a8e4996..3ef60df7a1 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -482,13 +482,6 @@ class TestJIT < Test::Unit::TestCase end; end - def test_compile_insn_methodref - assert_compile_once("#{<<~"begin;"}\n#{<<~'end;'}", result_inspect: '"main"', insns: %i[methodref]) - begin; - self.:inspect.call - end; - end - def test_compile_insn_inlinecache assert_compile_once('Struct', result_inspect: 'Struct', insns: %i[opt_getinlinecache opt_setinlinecache]) end |