about summary refs log tree commit diff
path: root/tests/ui/precondition-checks/unchecked_sub.rs
blob: bfe8f5849f5928a206a1e0cb7e0c3c97549d4dd8 (plain)
1
2
3
4
5
6
7
8
9
//@ run-crash
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes
//@ error-pattern: unsafe precondition(s) violated: u8::unchecked_sub cannot overflow

fn main() {
    unsafe {
        0u8.unchecked_sub(1u8);
    }
}