()
| 4056 | |
| 4057 | #[test] |
| 4058 | fn test_if_uniline_allowed_on_error() { |
| 4059 | do_if_uniline_allowed_test( |
| 4060 | "ON ERROR RESUME NEXT", |
| 4061 | Statement::OnError(OnErrorSpan::ResumeNext(lc(1, 11))), |
| 4062 | ); |
| 4063 | |
| 4064 | do_error_test("IF 1 THEN ON", "1:13: Expected ERROR after ON"); |
| 4065 | } |
| 4066 | |
| 4067 | #[test] |
| 4068 | fn test_if_uniline_allowed_return() { |
nothing calls this directly
no test coverage detected