mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
60 lines
1.3 KiB
Text
60 lines
1.3 KiB
Text
error: use of `Debug`-based formatting
|
|
--> $DIR/print.rs:23:19
|
|
|
|
|
23 | write!(f, "{:?}", 43.1415)
|
|
| ^^^^^^
|
|
|
|
|
= note: `-D clippy::use-debug` implied by `-D warnings`
|
|
|
|
error: use of `Debug`-based formatting
|
|
--> $DIR/print.rs:30:19
|
|
|
|
|
30 | write!(f, "{:?}", 42.718)
|
|
| ^^^^^^
|
|
|
|
error: use of `println!`
|
|
--> $DIR/print.rs:35:5
|
|
|
|
|
35 | println!("Hello");
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::print-stdout` implied by `-D warnings`
|
|
|
|
error: use of `print!`
|
|
--> $DIR/print.rs:36:5
|
|
|
|
|
36 | print!("Hello");
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: use of `print!`
|
|
--> $DIR/print.rs:38:5
|
|
|
|
|
38 | print!("Hello {}", "World");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of `print!`
|
|
--> $DIR/print.rs:40:5
|
|
|
|
|
40 | print!("Hello {:?}", "World");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of `Debug`-based formatting
|
|
--> $DIR/print.rs:40:12
|
|
|
|
|
40 | print!("Hello {:?}", "World");
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: use of `print!`
|
|
--> $DIR/print.rs:42:5
|
|
|
|
|
42 | print!("Hello {:#?}", "#orld");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of `Debug`-based formatting
|
|
--> $DIR/print.rs:42:12
|
|
|
|
|
42 | print!("Hello {:#?}", "#orld");
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 9 previous errors
|
|
|