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