Files
rust/src/test/ui/asm/may_unwind.rs
2022-08-14 13:46:51 -07:00

11 lines
140 B
Rust

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