Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-asm_goto.rs
blob: beac4590349f629c7803f18a715d76ba4fdfe7b4 [
file
] [
log
] [
blame
] [
edit
]
//@ only-x86_64
use
std
::
arch
::
asm
;
fn
main
()
{
unsafe
{
asm
!(
"jmp {}"
,
label
{});
//~^ ERROR label operands for inline assembly are unstable
}
}