error: literal with an empty format string
  --> $DIR/print_literal.rs:22: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:23:24
   |
LL |     print!("Hello {}", "world");
   |                        ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:24:36
   |
LL |     println!("Hello {} {}", world, "world");
   |                                    ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:25:26
   |
LL |     println!("Hello {}", "world");
   |                          ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:26:30
   |
LL |     println!("10 / 4 is {}", 2.5);
   |                              ^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:27:28
   |
LL |     println!("2 + 1 = {}", 3);
   |                            ^

error: literal with an empty format string
  --> $DIR/print_literal.rs:32:25
   |
LL |     println!("{0} {1}", "hello", "world");
   |                         ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:32:34
   |
LL |     println!("{0} {1}", "hello", "world");
   |                                  ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:33:25
   |
LL |     println!("{1} {0}", "hello", "world");
   |                         ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:33:34
   |
LL |     println!("{1} {0}", "hello", "world");
   |                                  ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:36:35
   |
LL |     println!("{foo} {bar}", foo = "hello", bar = "world");
   |                                   ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:36:50
   |
LL |     println!("{foo} {bar}", foo = "hello", bar = "world");
   |                                                  ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:37:35
   |
LL |     println!("{bar} {foo}", foo = "hello", bar = "world");
   |                                   ^^^^^^^

error: literal with an empty format string
  --> $DIR/print_literal.rs:37:50
   |
LL |     println!("{bar} {foo}", foo = "hello", bar = "world");
   |                                                  ^^^^^^^

error: aborting due to 14 previous errors