(self)
| 2957 | |
| 2958 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2959 | def test_invalid_syntax_3(self): |
| 2960 | self.assert_syntax_error(""" |
| 2961 | match ...: |
| 2962 | case 42 as _: |
| 2963 | pass |
| 2964 | """) |
| 2965 | |
| 2966 | def test_len1_tuple_sequence_pattern_comma(self): |
| 2967 | # correct syntax would be `case(*x,):` |
nothing calls this directly
no test coverage detected