]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/may_unwind.rs
Rollup merge of #99570 - XrXr:box-from-slice-docs, r=thomcc
[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 }