| Add the differential test runner, and a lowering to measure with it | 1 | // Both languages truncate toward zero. `/` must become `div`, not `/`. |
| 2 | fn main() { | |
| 3 | println!("{} {}", -7i32 / 2, -7i32 % 2); | |
| 4 | println!("{} {}", 7i32 / -2, 7i32 % -2); | |
| 5 | println!("{}", 7.0f64 / 2.0f64); | |
| 6 | } |