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