89 lines
2.8 KiB
Plaintext
89 lines
2.8 KiB
Plaintext
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:36:79
|
|
|
|
|
36 | 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:37:32
|
|
|
|
|
37 | write!(&mut v, "Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:38:44
|
|
|
|
|
38 | writeln!(&mut v, "Hello {} {}", world, "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:39:34
|
|
|
|
|
39 | writeln!(&mut v, "Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:40:38
|
|
|
|
|
40 | writeln!(&mut v, "10 / 4 is {}", 2.5);
|
|
| ^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:41:36
|
|
|
|
|
41 | writeln!(&mut v, "2 + 1 = {}", 3);
|
|
| ^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:46:33
|
|
|
|
|
46 | writeln!(&mut v, "{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:46:42
|
|
|
|
|
46 | writeln!(&mut v, "{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:47:33
|
|
|
|
|
47 | writeln!(&mut v, "{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:47:42
|
|
|
|
|
47 | writeln!(&mut v, "{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:50:43
|
|
|
|
|
50 | writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:50:58
|
|
|
|
|
50 | writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:51:43
|
|
|
|
|
51 | writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/write_literal.rs:51:58
|
|
|
|
|
51 | writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 14 previous errors
|
|
|