blob: b5615cacc2055b31acd3ebcd69165f2ae0f3ef45 [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_i32 >> -1;
}