6 lines
71 B
Rust
6 lines
71 B
Rust
#![allow(arithmetic_overflow)]
|
|
|
|
fn main() {
|
|
let _n = 1i64 >> 64;
|
|
}
|