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
|
|
|
|
|
31 | 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
|
|
|
|
|
32 | print!("Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:33:36
|
|
|
|
|
33 | println!("Hello {} {}", world, "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:34:26
|
|
|
|
|
34 | println!("Hello {}", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:35:30
|
|
|
|
|
35 | println!("10 / 4 is {}", 2.5);
|
|
| ^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:36:28
|
|
|
|
|
36 | println!("2 + 1 = {}", 3);
|
|
| ^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:41:25
|
|
|
|
|
41 | println!("{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:41:34
|
|
|
|
|
41 | println!("{0} {1}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:42:25
|
|
|
|
|
42 | println!("{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:42:34
|
|
|
|
|
42 | println!("{1} {0}", "hello", "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:45:35
|
|
|
|
|
45 | println!("{foo} {bar}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:45:50
|
|
|
|
|
45 | println!("{foo} {bar}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:46:35
|
|
|
|
|
46 | println!("{bar} {foo}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: literal with an empty format string
|
|
--> $DIR/print_literal.rs:46:50
|
|
|
|
|
46 | println!("{bar} {foo}", foo = "hello", bar = "world");
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 14 previous errors
|
|
|