1
Fork 0
rust/src/test/ui/asm/may_unwind.rs

10 lines
152 B
Rust
Raw Normal View History

// min-llvm-version: 13.0.0
// run-pass
// needs-asm-support
#![feature(asm, asm_unwind)]
fn main() {
unsafe { asm!("", options(may_unwind)) };
}