]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/may_unwind.rs
Rollup merge of #99787 - aDotInTheVoid:rdj-dyn, r=camelid,notriddle,GuillaumeGomez
[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 }