89 lines
2.6 KiB
Plaintext
89 lines
2.6 KiB
Plaintext
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:31:71
|
|
|
|
|
LL | println!("{} of {:b} people know binary, the other half doesn't", 1, 2);
|
|
| ^
|
|
|
|
|
= note: `-D clippy::print-literal` implied by `-D warnings`
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:32:24
|
|
|
|
|
LL | print!("Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:33:36
|
|
|
|
|
LL | println!("Hello {} {}", world, "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:34:26
|
|
|
|
|
LL | println!("Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:35:30
|
|
|
|
|
LL | println!("10 / 4 is {}", 2.5);
|
|
| ^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:36:28
|
|
|
|
|
LL | println!("2 + 1 = {}", 3);
|
|
| ^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:41:25
|
|
|
|
|
LL | println!("{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:41:34
|
|
|
|
|
LL | println!("{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:42:25
|
|
|
|
|
LL | println!("{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:42:34
|
|
|
|
|
LL | println!("{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:45:35
|
|
|
|
|
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:45:50
|
|
|
|
|
LL | println!("{foo} {bar}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:46:35
|
|
|
|
|
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:46:50
|
|
|
|
|
LL | println!("{bar} {foo}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 14 previous errors
|
|
|