2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-30 17:06:34 +00:00
|
|
|
--> $DIR/print_literal.rs:25:24
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {}", "world");
|
2018-04-21 18:50:49 +00:00
|
|
|
| ^^^^^^^
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::print-literal` implied by `-D warnings`
|
2021-03-25 18:29:11 +00:00
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("Hello {}", "world");
|
|
|
|
LL + print!("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
|
2021-01-30 17:06:34 +00:00
|
|
|
--> $DIR/print_literal.rs:26:36
|
2018-04-21 18:50:49 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("Hello {} {}", world, "world");
|
2018-04-01 18:28:07 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("Hello {} {}", world, "world");
|
|
|
|
LL + println!("Hello {} world", world);
|
|
|
|
|
|
2018-04-01 18:28:07 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-30 17:06:34 +00:00
|
|
|
--> $DIR/print_literal.rs:27:26
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("Hello {}", "world");
|
2018-04-01 18:28:07 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("Hello {}", "world");
|
|
|
|
LL + println!("Hello world");
|
|
|
|
|
|
2018-04-01 18:28:07 +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/print_literal.rs:32:25
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{0} {1}", "hello", "world");
|
2018-04-01 18:28:07 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{0} {1}", "hello", "world");
|
|
|
|
LL + println!("hello {1}", "world");
|
|
|
|
|
|
2018-04-01 18:28:07 +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/print_literal.rs:32:34
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{0} {1}", "hello", "world");
|
2018-04-01 18:28:07 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{0} {1}", "hello", "world");
|
|
|
|
LL + println!("{0} world", "hello");
|
|
|
|
|
|
2018-04-01 18:28:07 +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/print_literal.rs:33:25
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{1} {0}", "hello", "world");
|
2018-04-01 18:28:07 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{1} {0}", "hello", "world");
|
|
|
|
LL + println!("{1} hello", "world");
|
|
|
|
|
|
2018-04-01 18:28:07 +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/print_literal.rs:33:34
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{1} {0}", "hello", "world");
|
2018-04-01 18:28:07 +00:00
|
|
|
| ^^^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{1} {0}", "hello", "world");
|
|
|
|
LL + println!("world {0}", "hello");
|
|
|
|
|
|
2018-04-01 18:28:07 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-03-25 18:29:11 +00:00
|
|
|
--> $DIR/print_literal.rs:36:29
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
|
2021-03-25 18:29:11 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{foo} {bar}", foo = "hello", bar = "world");
|
|
|
|
LL + println!("hello {bar}", bar = "world");
|
|
|
|
|
|
2018-04-01 18:28:07 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-03-25 18:29:11 +00:00
|
|
|
--> $DIR/print_literal.rs:36:44
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
|
2021-03-25 18:29:11 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{foo} {bar}", foo = "hello", bar = "world");
|
|
|
|
LL + println!("{foo} world", foo = "hello");
|
|
|
|
|
|
2018-04-01 18:28:07 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-03-25 18:29:11 +00:00
|
|
|
--> $DIR/print_literal.rs:37:29
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
|
2021-03-25 18:29:11 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{bar} {foo}", foo = "hello", bar = "world");
|
|
|
|
LL + println!("{bar} hello", bar = "world");
|
|
|
|
|
|
2018-04-01 18:28:07 +00:00
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-03-25 18:29:11 +00:00
|
|
|
--> $DIR/print_literal.rs:37:44
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
|
2021-03-25 18:29:11 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - println!("{bar} {foo}", foo = "hello", bar = "world");
|
|
|
|
LL + println!("world {foo}", foo = "hello");
|
|
|
|
|
|
2018-04-01 18:28:07 +00:00
|
|
|
|
2021-01-30 17:06:34 +00:00
|
|
|
error: aborting due to 11 previous errors
|
2018-04-01 18:28:07 +00:00
|
|
|
|