2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:24:71
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
24 | println!("{} of {:b} people know binary, the other half doesn't", 1, 2);
|
2018-04-21 13:50:49 -05:00
|
|
|
| ^
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::print-literal` implied by `-D warnings`
|
2018-04-01 13:28:07 -05:00
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:25:24
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
25 | print!("Hello {}", "world");
|
2018-04-21 13:50:49 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:26:36
|
2018-04-21 13:50:49 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
26 | println!("Hello {} {}", world, "world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:27:26
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
27 | println!("Hello {}", "world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:28:30
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
28 | println!("10 / 4 is {}", 2.5);
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:29:28
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
29 | println!("2 + 1 = {}", 3);
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:34:25
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
34 | println!("{0} {1}", "hello", "world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:34:34
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
34 | println!("{0} {1}", "hello", "world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:35:25
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
35 | println!("{1} {0}", "hello", "world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:35:34
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
35 | println!("{1} {0}", "hello", "world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:38:33
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
38 | println!("{foo} {bar}", foo="hello", bar="world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:38:46
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
38 | println!("{foo} {bar}", foo="hello", bar="world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:39:33
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
39 | println!("{bar} {foo}", foo="hello", bar="world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-07-22 17:19:07 -05:00
|
|
|
error: literal with an empty format string
|
2018-07-25 17:00:19 -05:00
|
|
|
--> $DIR/print_literal.rs:39:46
|
2018-04-01 13:28:07 -05:00
|
|
|
|
|
2018-07-25 16:51:04 -05:00
|
|
|
39 | println!("{bar} {foo}", foo="hello", bar="world");
|
2018-04-01 13:28:07 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-04-21 13:50:49 -05:00
|
|
|
error: aborting due to 14 previous errors
|
2018-04-01 13:28:07 -05:00
|
|
|
|