(self)
| 15 | # TODO: RUSTPYTHON |
| 16 | @unittest.expectedFailure |
| 17 | def test1(self): |
| 18 | prog_text_1 = """\ |
| 19 | def wrong1(): |
| 20 | a = 1 |
| 21 | b = 2 |
| 22 | global a |
| 23 | global b |
| 24 | """ |
| 25 | check_syntax_error(self, prog_text_1, lineno=4, offset=5) |
| 26 | |
| 27 | # TODO: RUSTPYTHON |
| 28 | @unittest.expectedFailure |
nothing calls this directly
no test coverage detected