summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/unreachable-static-msg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/unreachable-static-msg.rs')
-rw-r--r--tests/ui/macros/unreachable-static-msg.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/macros/unreachable-static-msg.rs b/tests/ui/macros/unreachable-static-msg.rs
new file mode 100644
index 000000000..55edf3af7
--- /dev/null
+++ b/tests/ui/macros/unreachable-static-msg.rs
@@ -0,0 +1,7 @@
+// run-fail
+// error-pattern:internal error: entered unreachable code: uhoh
+// ignore-emscripten no processes
+
+fn main() {
+ unreachable!("uhoh")
+}