Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
asm
/
may_unwind.rs
blob: 0fef317a2cfd1d530b3a7a268ba4cd79c813c812 [
file
]
//@ run-pass
//@ needs-asm-support
//@ needs-unwind
//@ ignore-backends: gcc
#![
feature
(
asm_unwind
)]
use
std
::
arch
::
asm
;
fn
main
()
{
unsafe
{
asm
!(
""
,
options
(
may_unwind
))
};
}