rust/tests/ui/asm/may_unwind.rs
2024-02-16 20:02:50 +00:00

11 lines
142 B
Rust

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