mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
6 lines
110 B
Rust
6 lines
110 B
Rust
fn main() {
|
|
assert_eq!(!true, false);
|
|
assert_eq!(!0xFFu16, 0xFF00);
|
|
assert_eq!(-{1i16}, -1i16);
|
|
}
|