(self)
| 2939 | """) |
| 2940 | |
| 2941 | def test_invalid_syntax_1(self): |
| 2942 | self.assert_syntax_error(""" |
| 2943 | match ...: |
| 2944 | case {"first": first, **rest, "last": last}: |
| 2945 | pass |
| 2946 | """) |
| 2947 | |
| 2948 | def test_invalid_syntax_2(self): |
| 2949 | self.assert_syntax_error(""" |
nothing calls this directly
no test coverage detected