]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/may_unwind.rs
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / asm / may_unwind.rs
1 // run-pass
2 // needs-asm-support
3
4 #![feature(asm_unwind)]
5
6 use std::arch::asm;
7
8 fn main() {
9     unsafe { asm!("", options(may_unwind)) };
10 }