summaryrefslogtreecommitdiffstats
path: root/src/test/ui/asm/may_unwind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/asm/may_unwind.rs')
-rw-r--r--src/test/ui/asm/may_unwind.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/ui/asm/may_unwind.rs b/src/test/ui/asm/may_unwind.rs
new file mode 100644
index 000000000..117c0a63a
--- /dev/null
+++ b/src/test/ui/asm/may_unwind.rs
@@ -0,0 +1,11 @@
+// min-llvm-version: 13.0.0
+// run-pass
+// needs-asm-support
+
+#![feature(asm_unwind)]
+
+use std::arch::asm;
+
+fn main() {
+ unsafe { asm!("", options(may_unwind)) };
+}