rust/tests/ui/asm/may_unwind.rs

12 lines
159 B
Rust

//@ run-pass
//@ needs-asm-support
//@ needs-unwind
#![feature(asm_unwind)]
use std::arch::asm;
fn main() {
unsafe { asm!("", options(may_unwind)) };
}