()
| 4029 | |
| 4030 | #[test] |
| 4031 | fn test_if_uniline_allowed_exit() { |
| 4032 | do_if_uniline_allowed_test("EXIT DO", Statement::ExitDo(ExitSpan { pos: lc(1, 11) })); |
| 4033 | |
| 4034 | do_error_test("IF 1 THEN EXIT", "1:15: Expecting DO, FOR, FUNCTION or SUB after EXIT"); |
| 4035 | } |
| 4036 | |
| 4037 | #[test] |
| 4038 | fn test_if_uniline_allowed_gosub() { |
nothing calls this directly
no test coverage detected