blob: e0d3f1904a23ffc62475114fd6280bae0a600436 [file] [log] [blame]
#![allow(exceeding_bitshifts, const_err)]
fn main() {
let _n = 1i64 >> 64; //~ ERROR attempt to shift right with overflow
}