(self)
| 2932 | """) |
| 2933 | |
| 2934 | def test_invalid_syntax_0(self): |
| 2935 | self.assert_syntax_error(""" |
| 2936 | match ...: |
| 2937 | case {**rest, "key": value}: |
| 2938 | pass |
| 2939 | """) |
| 2940 | |
| 2941 | def test_invalid_syntax_1(self): |
| 2942 | self.assert_syntax_error(""" |
nothing calls this directly
no test coverage detected