From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/asm/may_unwind.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/ui/asm/may_unwind.rs (limited to 'tests/ui/asm/may_unwind.rs') diff --git a/tests/ui/asm/may_unwind.rs b/tests/ui/asm/may_unwind.rs new file mode 100644 index 000000000..b9479c44b --- /dev/null +++ b/tests/ui/asm/may_unwind.rs @@ -0,0 +1,10 @@ +// run-pass +// needs-asm-support + +#![feature(asm_unwind)] + +use std::arch::asm; + +fn main() { + unsafe { asm!("", options(may_unwind)) }; +} -- cgit v1.2.3