Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
precondition-checks
/
unchecked_add.rs
blob: b7727aeb9682cc6301a83c2092ed937673570706 [
file
] [
log
] [
blame
]
//@ run-crash
//@ 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
);
}
}