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