summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/print_literal.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
commitc23a457e72abe608715ac76f076f47dc42af07a5 (patch)
tree2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /src/tools/clippy/tests/ui/print_literal.rs
parentReleasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz
rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/print_literal.rs')
-rw-r--r--src/tools/clippy/tests/ui/print_literal.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/print_literal.rs b/src/tools/clippy/tests/ui/print_literal.rs
index 538513e91..bd7444c96 100644
--- a/src/tools/clippy/tests/ui/print_literal.rs
+++ b/src/tools/clippy/tests/ui/print_literal.rs
@@ -25,19 +25,32 @@ fn main() {
// these should throw warnings
print!("Hello {}", "world");
+ //~^ ERROR: literal with an empty format string
+ //~| NOTE: `-D clippy::print-literal` implied by `-D warnings`
println!("Hello {} {}", world, "world");
+ //~^ ERROR: literal with an empty format string
println!("Hello {}", "world");
+ //~^ ERROR: literal with an empty format string
println!("{} {:.4}", "a literal", 5);
+ //~^ ERROR: literal with an empty format string
// positional args don't change the fact
// that we're using a literal -- this should
// throw a warning
println!("{0} {1}", "hello", "world");
+ //~^ ERROR: literal with an empty format string
+ //~| ERROR: literal with an empty format string
println!("{1} {0}", "hello", "world");
+ //~^ ERROR: literal with an empty format string
+ //~| ERROR: literal with an empty format string
// named args shouldn't change anything either
println!("{foo} {bar}", foo = "hello", bar = "world");
+ //~^ ERROR: literal with an empty format string
+ //~| ERROR: literal with an empty format string
println!("{bar} {foo}", foo = "hello", bar = "world");
+ //~^ ERROR: literal with an empty format string
+ //~| ERROR: literal with an empty format string
// The string literal from `file!()` has a callsite span that isn't marked as coming from an
// expansion