(self)
| 2946 | """) |
| 2947 | |
| 2948 | def test_invalid_syntax_2(self): |
| 2949 | self.assert_syntax_error(""" |
| 2950 | match ...: |
| 2951 | case {**_}: |
| 2952 | pass |
| 2953 | """) |
| 2954 | |
| 2955 | def test_invalid_syntax_3(self): |
| 2956 | self.assert_syntax_error(""" |
nothing calls this directly
no test coverage detected