about summary refs log tree commit diff
path: root/src/tools/miri/tests/panic/overflowing-rsh-1.rs
blob: 4c0106f0fb1fd3bd7b9aa8d375f6f88c35ddbdbd (plain)
1
2
3
4
5
#![allow(arithmetic_overflow)]

fn main() {
    let _n = 1i64 >> 64;
}