Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
asm
/
may_unwind.rs
blob: 1d4f50d5fe89ddb7348a90dec0537b5a92bd9275 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ needs-asm-support
//@ needs-unwind
#![
feature
(
asm_unwind
)]
use
std
::
arch
::
asm
;
fn
main
()
{
unsafe
{
asm
!(
""
,
options
(
may_unwind
))
};
}