diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-10-29 08:58:39 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-10-29 08:58:39 +0900 |
commit | b4229c0a90ef902328e09a92fc5c6e884d01c542 (patch) | |
tree | dfab7c68c73dec1efec5fd6284488c38f0451181 /test/ruby/test_pattern_matching.rb | |
parent | da3774e5eb6de9dfe5c2ec6f3444c81d22c0e00a (diff) |
Restore `in_kwarg` flag properly
Diffstat (limited to 'test/ruby/test_pattern_matching.rb')
-rw-r--r-- | test/ruby/test_pattern_matching.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_pattern_matching.rb b/test/ruby/test_pattern_matching.rb index cb87529ccf..5283d5ce87 100644 --- a/test/ruby/test_pattern_matching.rb +++ b/test/ruby/test_pattern_matching.rb @@ -1186,6 +1186,7 @@ END def test_modifier_in assert_equal true, (1 in a) assert_equal 1, a + assert_valid_syntax "p(({} in a:), a:\n 1)" end end END_of_GUARD |