10 lines
240 B
Rust
10 lines
240 B
Rust
|
//@ run-fail
|
||
|
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes
|
||
|
//@ error-pattern: unsafe precondition(s) violated: u8::unchecked_add cannot overflow
|
||
|
|
||
|
fn main() {
|
||
|
unsafe {
|
||
|
1u8.unchecked_add(u8::MAX);
|
||
|
}
|
||
|
}
|