rust-clippy/tests/ui/write_literal.stderr

89 lines
2.8 KiB
Text
Raw Normal View History

error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:39:79
|
2018-10-06 16:18:06 +00:00
39 | 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
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:40:32
|
2018-10-06 16:18:06 +00:00
40 | write!(&mut v, "Hello {}", "world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:41:44
|
2018-10-06 16:18:06 +00:00
41 | writeln!(&mut v, "Hello {} {}", world, "world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:42:34
|
2018-10-06 16:18:06 +00:00
42 | writeln!(&mut v, "Hello {}", "world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:43:38
|
2018-10-06 16:18:06 +00:00
43 | writeln!(&mut v, "10 / 4 is {}", 2.5);
| ^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:44:36
|
2018-10-06 16:18:06 +00:00
44 | writeln!(&mut v, "2 + 1 = {}", 3);
| ^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:49:33
|
2018-10-06 16:18:06 +00:00
49 | writeln!(&mut v, "{0} {1}", "hello", "world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:49:42
|
2018-10-06 16:18:06 +00:00
49 | writeln!(&mut v, "{0} {1}", "hello", "world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:50:33
|
2018-10-06 16:18:06 +00:00
50 | writeln!(&mut v, "{1} {0}", "hello", "world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:50:42
|
2018-10-06 16:18:06 +00:00
50 | writeln!(&mut v, "{1} {0}", "hello", "world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:53:41
|
2018-10-06 16:18:06 +00:00
53 | writeln!(&mut v, "{foo} {bar}", foo="hello", bar="world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:53:54
|
2018-10-06 16:18:06 +00:00
53 | writeln!(&mut v, "{foo} {bar}", foo="hello", bar="world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:54:41
|
2018-10-06 16:18:06 +00:00
54 | writeln!(&mut v, "{bar} {foo}", foo="hello", bar="world");
| ^^^^^^^
error: literal with an empty format string
2018-10-06 16:18:06 +00:00
--> $DIR/write_literal.rs:54:54
|
2018-10-06 16:18:06 +00:00
54 | writeln!(&mut v, "{bar} {foo}", foo="hello", bar="world");
| ^^^^^^^
error: aborting due to 14 previous errors