| Add the differential test runner, and a lowering to measure with it | 1 | //@ reject: Rust saturates, Nim rounds |
| 2 | // Rust saturates float->int casts, Nim rounds and range-checks. Different | |
| 3 | // operations, so no mapping is emitted. | |
| 4 | fn main() { | |
| 5 | println!("{}", 1e10f64 as i32); | |
| 6 | } |