2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:27:79
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{} of {:b} people know binary, the other half doesn't", 1, 2);
|
2018-04-21 18:50:49 +00:00
|
|
|
| ^
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::write-literal` implied by `-D warnings`
|
2018-04-05 03:46:39 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:28:32
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | write!(&mut v, "Hello {}", "world");
|
2018-04-21 18:50:49 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:29:44
|
2018-04-21 18:50:49 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "Hello {} {}", world, "world");
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:30:34
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "Hello {}", "world");
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:31:38
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "10 / 4 is {}", 2.5);
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:32:36
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "2 + 1 = {}", 3);
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:37:33
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{0} {1}", "hello", "world");
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:37:42
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{0} {1}", "hello", "world");
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:38:33
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{1} {0}", "hello", "world");
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:38:42
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{1} {0}", "hello", "world");
|
2018-04-05 03:46:39 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:41:43
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
2018-04-05 03:46:39 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:41:58
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
2018-04-05 03:46:39 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:42:43
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
2018-04-05 03:46:39 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/write_literal.rs:42:58
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
2018-04-05 03:46:39 +00:00
|
|
|
|
2018-04-21 18:50:49 +00:00
|
|
|
error: aborting due to 14 previous errors
|
2018-04-05 03:46:39 +00:00
|
|
|
|