blob: 57c617e08455bb1129f09378de45ffc488ec6ee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ run-crash
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes
//@ error-pattern: unsafe precondition(s) violated: u8::unchecked_shl cannot overflow
#![feature(unchecked_shifts)]
fn main() {
unsafe {
0u8.unchecked_shl(u8::BITS);
}
}
|