()
| 733 | #[test] |
| 734 | fn hll_return_zero() { |
| 735 | let (_, outcome, _) = run_hll( |
| 736 | r#" |
| 737 | main: () -> i32 { |
| 738 | return 0 |
| 739 | } |
| 740 | "#, |
| 741 | ); |
| 742 | assert!( |
| 743 | matches!(outcome, StepOutcome::Halted(0)), |
| 744 | "expected Halted(0), got {outcome:?}" |
| 745 | ); |
| 746 | } |
| 747 | |
| 748 | #[test] |
nothing calls this directly
no test coverage detected