10 lines
286 B
Rust
10 lines
286 B
Rust
//@ run-fail
|
|
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes
|
|
//@ error-pattern: unsafe precondition(s) violated: hint::assert_unchecked must never be called when the condition is false
|
|
|
|
fn main() {
|
|
unsafe {
|
|
std::hint::assert_unchecked(false);
|
|
}
|
|
}
|