summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/unreachable-format-args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/unreachable-format-args.rs')
-rw-r--r--src/test/ui/macros/unreachable-format-args.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/macros/unreachable-format-args.rs b/src/test/ui/macros/unreachable-format-args.rs
new file mode 100644
index 000000000..04a31fc1b
--- /dev/null
+++ b/src/test/ui/macros/unreachable-format-args.rs
@@ -0,0 +1,14 @@
+// ignore-emscripten no processes
+
+// revisions: edition_2015 edition_2021
+// [edition_2015]edition:2015
+// [edition_2021]edition:2021
+// [edition_2015]check-fail
+// [edition_2021]run-fail
+// [edition_2015]error-pattern:there is no argument named `x`
+// [edition_2021]error-pattern:internal error: entered unreachable code: x is 5 and y is 0
+
+fn main() {
+ let x = 5;
+ unreachable!("x is {x} and y is {y}", y = 0);
+}