blob: 78c1e6c9447c2059b8854cdbdbe005baaeebfcf9 [file] [log] [blame]
//@ only-x86_64
use std::arch::asm;
fn main() {
unsafe {
asm!("", options(may_unwind));
//~^ ERROR the `may_unwind` option is unstable
}
}