Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
precondition-checks
/
unchecked_sub.rs
blob: bfe8f5849f5928a206a1e0cb7e0c3c97549d4dd8 [
file
] [
log
] [
blame
]
//@ 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
);
}
}