()
| 189 | main: () -> i32 { |
| 190 | result: { quotient: i32, remainder: i32 } = divide(10, 3) |
| 191 | return result.quotient |
| 192 | }"#, |
| 193 | ); |
| 194 | assert!( |
| 195 | asm.contains("ld a0,"), |
| 196 | "expected both i32 fields packed into a0 via ld" |
| 197 | ); |
nothing calls this directly
no test coverage detected