rust/tests/ui/asm/may_unwind.rs
2023-01-11 09:32:08 +00: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)) };
}