diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-06-30 09:34:41 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-06-30 11:45:37 +0900 |
commit | 409b0ec4c3c4878c0ba164d1303de67787157808 (patch) | |
tree | 292c5554ee9f81571b760d359ac9513c44da3ee0 /test/ruby/test_refinement.rb | |
parent | 84837e6d16cb0e588b1acc2691cb1048b9a89989 (diff) |
Suppress unused variable warnings
Diffstat (limited to 'test/ruby/test_refinement.rb')
-rw-r--r-- | test/ruby/test_refinement.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_refinement.rb b/test/ruby/test_refinement.rb index 59029de890..afb4784d00 100644 --- a/test/ruby/test_refinement.rb +++ b/test/ruby/test_refinement.rb @@ -1562,6 +1562,7 @@ class TestRefinement < Test::Unit::TestCase undef :foo end end + ext end def test_call_refined_method_in_duplicate_module @@ -2291,6 +2292,7 @@ class TestRefinement < Test::Unit::TestCase end end assert_equal("[C[A[B]]]", c.new.foo, '[ruby-dev:50390] [Bug #14232]') + d end private |