()
| 4036 | |
| 4037 | #[test] |
| 4038 | fn test_if_uniline_allowed_gosub() { |
| 4039 | do_if_uniline_allowed_test( |
| 4040 | "GOSUB 10", |
| 4041 | Statement::Gosub(GotoSpan { target: "10".to_owned(), target_pos: lc(1, 17) }), |
| 4042 | ); |
| 4043 | |
| 4044 | do_error_test("IF 1 THEN GOSUB", "1:16: Expected label name after GOSUB"); |
| 4045 | } |
| 4046 | |
| 4047 | #[test] |
| 4048 | fn test_if_uniline_allowed_goto() { |
nothing calls this directly
no test coverage detected