aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_pattern_matching.rb
diff options
context:
space:
mode:
authorKazuki Tsujimoto <kazuki@callcc.net>2019-11-19 08:53:01 -0600
committerKazuki Tsujimoto <kazuki@callcc.net>2019-11-19 08:53:01 -0600
commit2439948bcc0ec9daf91cf79301195e59bad49aff (patch)
tree9603e001e41d33d231479ac6e1d63068ef56a033 /test/ruby/test_pattern_matching.rb
parent822d7ae31659e4ab60c4d1aa6d088577d6bc74b0 (diff)
downloadruby-2439948bcc0ec9daf91cf79301195e59bad49aff.tar.gz
Avoid needless object allocation
Diffstat (limited to 'test/ruby/test_pattern_matching.rb')
-rw-r--r--test/ruby/test_pattern_matching.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_pattern_matching.rb b/test/ruby/test_pattern_matching.rb
index 69524cb7a7..889f8dd519 100644
--- a/test/ruby/test_pattern_matching.rb
+++ b/test/ruby/test_pattern_matching.rb
@@ -1250,6 +1250,8 @@ END
case s[a: 0, b: 1]
in a:, c:
flunk
+ in a:, b:, c:
+ flunk
in b:
b == 1
end