23 lines
340 B
Rust
23 lines
340 B
Rust
//@ only-x86_64
|
|
//@ needs-asm-support
|
|
|
|
#![deny(unreachable_code)]
|
|
|
|
use std::arch::asm;
|
|
|
|
fn goto_fallthough() {
|
|
unsafe {
|
|
asm!(
|
|
"/* {} */",
|
|
label {
|
|
core::hint::unreachable_unchecked();
|
|
//~^ ERROR [E0133]
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
goto_fallthough();
|
|
}
|