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