Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-asm_unwind.rs
blob: 78c1e6c9447c2059b8854cdbdbe005baaeebfcf9 [
file
] [
log
] [
blame
] [
edit
]
//@ only-x86_64
use
std
::
arch
::
asm
;
fn
main
()
{
unsafe
{
asm
!(
""
,
options
(
may_unwind
));
//~^ ERROR the `may_unwind` option is unstable
}
}