about summary refs log tree commit diff
path: root/tests/ui/precondition-checks/unchecked_shr.rs
blob: 4a6d9ffb1d35bd88eaabf5681f6b1e7cf810bca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-fail
//@ 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);
    }
}