summaryrefslogtreecommitdiff
path: root/test/ruby/test_pattern_matching.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_pattern_matching.rb')
-rw-r--r--test/ruby/test_pattern_matching.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/test_pattern_matching.rb b/test/ruby/test_pattern_matching.rb
index 1f209b0081..cb87529ccf 100644
--- a/test/ruby/test_pattern_matching.rb
+++ b/test/ruby/test_pattern_matching.rb
@@ -1180,6 +1180,13 @@ END
end
end
end
+
+ ################################################################
+
+ def test_modifier_in
+ assert_equal true, (1 in a)
+ assert_equal 1, a
+ end
end
END_of_GUARD
$VERBOSE = verbose