Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
//@ needs-asm-support
//@ needs-unwind
#![feature(asm_unwind)]
use std::arch::asm;
fn main() {
unsafe { asm!("", options(may_unwind)) };
}