1 error: use of `Debug`-based formatting
2 --> $DIR/print.rs:11:20
4 LL | write!(f, "{:?}", 43.1415)
7 = note: `-D clippy::use-debug` implied by `-D warnings`
9 error: use of `println!`
10 --> $DIR/print.rs:23:5
12 LL | println!("Hello");
15 = note: `-D clippy::print-stdout` implied by `-D warnings`
17 error: use of `print!`
18 --> $DIR/print.rs:24:5
23 error: use of `print!`
24 --> $DIR/print.rs:26:5
26 LL | print!("Hello {}", "World");
27 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
29 error: use of `print!`
30 --> $DIR/print.rs:28:5
32 LL | print!("Hello {:?}", "World");
33 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
35 error: use of `Debug`-based formatting
36 --> $DIR/print.rs:28:19
38 LL | print!("Hello {:?}", "World");
41 error: use of `print!`
42 --> $DIR/print.rs:30:5
44 LL | print!("Hello {:#?}", "#orld");
45 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
47 error: use of `Debug`-based formatting
48 --> $DIR/print.rs:30:19
50 LL | print!("Hello {:#?}", "#orld");
53 error: aborting due to 8 previous errors