blob: 0fef317a2cfd1d530b3a7a268ba4cd79c813c812 [file] [log] [blame]
//@ run-pass
//@ needs-asm-support
//@ needs-unwind
//@ ignore-backends: gcc
#![feature(asm_unwind)]
use std::arch::asm;
fn main() {
unsafe { asm!("", options(may_unwind)) };
}