0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-28 18:35:29 +01:00
rust/tests/ui/numbers-arithmetic/i32-sub.rs
2024-02-16 20:02:50 +00:00

7 lines
89 B
Rust

//@ run-pass
pub fn main() { let mut x: i32 = -400; x = 0 - x; assert_eq!(x, 400); }