mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
88 lines
2.8 KiB
Text
88 lines
2.8 KiB
Text
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:29:79
|
|
|
|
|
29 | writeln!(&mut v, "{} of {:b} people know binary, the other half doesn't", 1, 2);
|
|
| ^
|
|
|
|
|
= note: `-D clippy::write-literal` implied by `-D warnings`
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:30:32
|
|
|
|
|
30 | write!(&mut v, "Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:31:44
|
|
|
|
|
31 | writeln!(&mut v, "Hello {} {}", world, "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:32:34
|
|
|
|
|
32 | writeln!(&mut v, "Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:33:38
|
|
|
|
|
33 | writeln!(&mut v, "10 / 4 is {}", 2.5);
|
|
| ^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:34:36
|
|
|
|
|
34 | writeln!(&mut v, "2 + 1 = {}", 3);
|
|
| ^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:39:33
|
|
|
|
|
39 | writeln!(&mut v, "{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:39:42
|
|
|
|
|
39 | writeln!(&mut v, "{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:40:33
|
|
|
|
|
40 | writeln!(&mut v, "{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:40:42
|
|
|
|
|
40 | writeln!(&mut v, "{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:43:41
|
|
|
|
|
43 | writeln!(&mut v, "{foo} {bar}", foo="hello", bar="world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:43:54
|
|
|
|
|
43 | writeln!(&mut v, "{foo} {bar}", foo="hello", bar="world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:44:41
|
|
|
|
|
44 | writeln!(&mut v, "{bar} {foo}", foo="hello", bar="world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:44:54
|
|
|
|
|
44 | writeln!(&mut v, "{bar} {foo}", foo="hello", bar="world");
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 14 previous errors
|
|
|