5 lines
92 B
Rust
5 lines
92 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
fn main() { let i32 x = -400_i32; x = 0_i32 - x; assert (x == 400_i32); } |