summaryrefslogtreecommitdiffstats
path: root/tests/ui/catch-unwind-bang.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/catch-unwind-bang.rs')
-rw-r--r--tests/ui/catch-unwind-bang.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/catch-unwind-bang.rs b/tests/ui/catch-unwind-bang.rs
new file mode 100644
index 000000000..fb3503937
--- /dev/null
+++ b/tests/ui/catch-unwind-bang.rs
@@ -0,0 +1,10 @@
+// run-pass
+// needs-unwind
+
+fn worker() -> ! {
+ panic!()
+}
+
+fn main() {
+ std::panic::catch_unwind(worker).unwrap_err();
+}