rust/tests/ui/print_literal.stderr

148 lines
3.7 KiB
Plaintext
Raw Normal View History

error: literal with an empty format string
--> $DIR/print_literal.rs:27:24
|
2018-12-27 09:57:55 -06:00
LL | print!("Hello {}", "world");
| ^^^^^^^
|
= note: `-D clippy::print-literal` implied by `-D warnings`
help: try this
|
2021-08-11 09:21:33 -05:00
LL - print!("Hello {}", "world");
LL + print!("Hello world");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:28:36
|
2018-12-27 09:57:55 -06:00
LL | println!("Hello {} {}", world, "world");
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("Hello {} {}", world, "world");
LL + println!("Hello {} world", world);
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:29:26
|
2018-12-27 09:57:55 -06:00
LL | println!("Hello {}", "world");
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("Hello {}", "world");
LL + println!("Hello world");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:30:26
2022-08-30 07:20:49 -05:00
|
LL | println!("{} {:.4}", "a literal", 5);
| ^^^^^^^^^^^
|
help: try this
|
LL - println!("{} {:.4}", "a literal", 5);
LL + println!("a literal {:.4}", 5);
|
error: literal with an empty format string
--> $DIR/print_literal.rs:35:25
|
2018-12-27 09:57:55 -06:00
LL | println!("{0} {1}", "hello", "world");
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{0} {1}", "hello", "world");
LL + println!("hello {1}", "world");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:35:34
|
2018-12-27 09:57:55 -06:00
LL | println!("{0} {1}", "hello", "world");
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{0} {1}", "hello", "world");
LL + println!("{0} world", "hello");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:36:34
|
2018-12-27 09:57:55 -06:00
LL | println!("{1} {0}", "hello", "world");
2022-08-30 07:20:49 -05:00
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{1} {0}", "hello", "world");
2022-08-30 07:20:49 -05:00
LL + println!("world {0}", "hello");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:36:25
|
2018-12-27 09:57:55 -06:00
LL | println!("{1} {0}", "hello", "world");
2022-08-30 07:20:49 -05:00
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{1} {0}", "hello", "world");
2022-08-30 07:20:49 -05:00
LL + println!("{1} hello", "world");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:39:35
|
2018-12-27 09:57:55 -06:00
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
2022-08-30 07:20:49 -05:00
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{foo} {bar}", foo = "hello", bar = "world");
LL + println!("hello {bar}", bar = "world");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:39:50
|
2018-12-27 09:57:55 -06:00
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
2022-08-30 07:20:49 -05:00
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{foo} {bar}", foo = "hello", bar = "world");
LL + println!("{foo} world", foo = "hello");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:40:50
|
2018-12-27 09:57:55 -06:00
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
2022-08-30 07:20:49 -05:00
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{bar} {foo}", foo = "hello", bar = "world");
2022-08-30 07:20:49 -05:00
LL + println!("world {foo}", foo = "hello");
2022-06-15 06:15:54 -05:00
|
error: literal with an empty format string
--> $DIR/print_literal.rs:40:35
|
2018-12-27 09:57:55 -06:00
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
2022-08-30 07:20:49 -05:00
| ^^^^^^^
|
help: try this
|
2021-08-11 09:21:33 -05:00
LL - println!("{bar} {foo}", foo = "hello", bar = "world");
2022-08-30 07:20:49 -05:00
LL + println!("{bar} hello", bar = "world");
2022-06-15 06:15:54 -05:00
|
2022-08-30 07:20:49 -05:00
error: aborting due to 12 previous errors