2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:31:27
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | write!(v, "Hello {}", "world");
|
|
|
|
| ^^^^^^^
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::write-literal` implied by `-D warnings`
|
2021-03-25 18:29:11 +00:00
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - write!(v, "Hello {}", "world");
|
|
|
|
LL + write!(v, "Hello world");
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2018-04-21 18:50:49 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:32:39
|
2018-04-21 18:50:49 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "Hello {} {}", world, "world");
|
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "Hello {} {}", world, "world");
|
|
|
|
LL + writeln!(v, "Hello {} world", world);
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:33:29
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "Hello {}", "world");
|
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "Hello {}", "world");
|
|
|
|
LL + writeln!(v, "Hello world");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:34:29
|
|
|
|
|
|
|
|
|
LL | writeln!(v, "{} {:.4}", "a literal", 5);
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
|
|
|
LL - writeln!(v, "{} {:.4}", "a literal", 5);
|
|
|
|
LL + writeln!(v, "a literal {:.4}", 5);
|
|
|
|
|
|
|
|
|
|
|
|
|
error: literal with an empty format string
|
|
|
|
--> $DIR/write_literal.rs:39:28
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{0} {1}", "hello", "world");
|
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{0} {1}", "hello", "world");
|
|
|
|
LL + writeln!(v, "hello {1}", "world");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:39:37
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{0} {1}", "hello", "world");
|
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{0} {1}", "hello", "world");
|
|
|
|
LL + writeln!(v, "{0} world", "hello");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:40:37
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{1} {0}", "hello", "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{1} {0}", "hello", "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
LL + writeln!(v, "world {0}", "hello");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:40:28
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{1} {0}", "hello", "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{1} {0}", "hello", "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
LL + writeln!(v, "{1} hello", "world");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:43:38
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
|
|
|
|
LL + writeln!(v, "hello {bar}", bar = "world");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:43:53
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
|
|
|
|
LL + writeln!(v, "{foo} world", foo = "hello");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:44:53
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
LL + writeln!(v, "world {foo}", foo = "hello");
|
2022-06-15 11:15:54 +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
|
2022-08-30 12:20:49 +00:00
|
|
|
--> $DIR/write_literal.rs:44:38
|
2018-04-05 03:46:39 +00:00
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL | writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
LL - writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
|
2022-08-30 12:20:49 +00:00
|
|
|
LL + writeln!(v, "{bar} hello", bar = "world");
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2018-04-05 03:46:39 +00:00
|
|
|
|
2022-08-30 12:20:49 +00:00
|
|
|
error: aborting due to 12 previous errors
|
2018-04-05 03:46:39 +00:00
|
|
|
|