6 lines
98 B
Rust
6 lines
98 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
fn main() { let mut x: i32 = -400_i32; x = 0_i32 - x; assert (x == 400_i32); }
|