summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/format-unused-lables.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/macros/format-unused-lables.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/macros/format-unused-lables.stderr')
-rw-r--r--tests/ui/macros/format-unused-lables.stderr50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/ui/macros/format-unused-lables.stderr b/tests/ui/macros/format-unused-lables.stderr
new file mode 100644
index 000000000..fad87fa2a
--- /dev/null
+++ b/tests/ui/macros/format-unused-lables.stderr
@@ -0,0 +1,50 @@
+error: multiple unused formatting arguments
+ --> $DIR/format-unused-lables.rs:2:22
+ |
+LL | println!("Test", 123, 456, 789);
+ | ------ ^^^ ^^^ ^^^ argument never used
+ | | | |
+ | | | argument never used
+ | | argument never used
+ | multiple missing formatting specifiers
+
+error: multiple unused formatting arguments
+ --> $DIR/format-unused-lables.rs:6:9
+ |
+LL | println!("Test2",
+ | ------- multiple missing formatting specifiers
+LL | 123,
+ | ^^^ argument never used
+LL | 456,
+ | ^^^ argument never used
+LL | 789
+ | ^^^ argument never used
+
+error: named argument never used
+ --> $DIR/format-unused-lables.rs:11:35
+ |
+LL | println!("Some stuff", UNUSED="args");
+ | ------------ ^^^^^^ named argument never used
+ | |
+ | formatting specifier missing
+
+error: multiple unused formatting arguments
+ --> $DIR/format-unused-lables.rs:14:9
+ |
+LL | println!("Some more $STUFF",
+ | ------------------
+ | | |
+ | | help: format specifiers use curly braces: `{STUFF}`
+ | multiple missing formatting specifiers
+LL | "woo!",
+ | ^^^^^^ argument never used
+LL | STUFF=
+LL | "things"
+ | ^^^^^^^^ named argument never used
+LL | , UNUSED="args");
+ | ^^^^^^ named argument never used
+ |
+ = note: shell formatting is not supported; see the documentation for `std::fmt`
+
+error: aborting due to 4 previous errors
+