blob: 7598e026d8139c76fc1910c1e7358b10435690c3 [file] [log] [blame]
// error-pattern:thread 'main' panicked at 'attempt to shift right with overflow'
// compile-flags: -C debug-assertions
#![warn(exceeding_bitshifts)]
fn main() {
let _x = -1_i64 >> 64;
}