summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/write_literal.fixed
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
commitef24de24a82fe681581cc130f342363c47c0969a (patch)
tree0d494f7e1a38b95c92426f58fe6eaa877303a86c /src/tools/clippy/tests/ui/write_literal.fixed
parentReleasing progress-linux version 1.74.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-ef24de24a82fe681581cc130f342363c47c0969a.tar.xz
rustc-ef24de24a82fe681581cc130f342363c47c0969a.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/write_literal.fixed')
-rw-r--r--src/tools/clippy/tests/ui/write_literal.fixed14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/tools/clippy/tests/ui/write_literal.fixed b/src/tools/clippy/tests/ui/write_literal.fixed
index ee577574d..3d216b76c 100644
--- a/src/tools/clippy/tests/ui/write_literal.fixed
+++ b/src/tools/clippy/tests/ui/write_literal.fixed
@@ -43,16 +43,22 @@ fn main() {
// throw a warning
writeln!(v, "hello world");
//~^ ERROR: literal with an empty format string
- //~| ERROR: literal with an empty format string
writeln!(v, "world hello");
//~^ ERROR: literal with an empty format string
- //~| ERROR: literal with an empty format string
// named args shouldn't change anything either
writeln!(v, "hello world");
//~^ ERROR: literal with an empty format string
- //~| ERROR: literal with an empty format string
writeln!(v, "world hello");
//~^ ERROR: literal with an empty format string
- //~| ERROR: literal with an empty format string
+
+ // #10128
+ writeln!(v, "hello {0} world", 2);
+ //~^ ERROR: literal with an empty format string
+ writeln!(v, "world {0} hello", 2);
+ //~^ ERROR: literal with an empty format string
+ writeln!(v, "hello {0} {1}, {bar}", 2, 3, bar = 4);
+ //~^ ERROR: literal with an empty format string
+ writeln!(v, "hello {0} {1}, world {2}", 2, 3, 4);
+ //~^ ERROR: literal with an empty format string
}