2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:22: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-17 18:55:59 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::print-literal` implied by `-D warnings`
|
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-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:23: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
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:24: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
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:29: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
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:29: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
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:30: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
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:30: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
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
error: literal with an empty format string
|
2021-01-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:33:35
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
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-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:33:50
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
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-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:34:35
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
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-17 18:55:59 +00:00
|
|
|
--> $DIR/print_literal.rs:34:50
|
2018-04-01 18:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
2018-04-01 18:28:07 +00:00
|
|
|
|
2021-01-17 18:55:59 +00:00
|
|
|
error: aborting due to 11 previous errors
|
2018-04-01 18:28:07 +00:00
|
|
|
|