blob: 793f495240d578728ab6a1d8e12aaa83115460f3 [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 _n = 1i64 >> [64][0];
}