rust/tests/compile-fail/intrinsics/overflowing-unchecked-rsh.rs

12 lines
191 B
Rust
Raw Normal View History

#![feature(core_intrinsics)]
use std::intrinsics::*;
//error-pattern: overflowing shift by 64 in `unchecked_shr`
fn main() {
unsafe {
let _n = unchecked_shr(1i64, 64);
}
}