about summary refs log tree commit diff
path: root/tests/ui/precondition-checks/unchecked_shr.rs
blob: 18502d2b64593ae78b46b3f28cb7cde3de4eee01 (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_shr cannot overflow

#![feature(unchecked_shifts)]

fn main() {
    unsafe {
        0u8.unchecked_shr(u8::BITS);
    }
}