(self)
| 2949 | """) |
| 2950 | |
| 2951 | def test_invalid_syntax_2(self): |
| 2952 | self.assert_syntax_error(""" |
| 2953 | match ...: |
| 2954 | case {**_}: |
| 2955 | pass |
| 2956 | """) |
| 2957 | |
| 2958 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2959 | def test_invalid_syntax_3(self): |
nothing calls this directly
no test coverage detected