mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
56 lines
1.4 KiB
Text
56 lines
1.4 KiB
Text
error: use of `Debug`-based formatting
|
|
--> tests/ui/print.rs:11:20
|
|
|
|
|
LL | write!(f, "{:?}", 43.1415)
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::use-debug` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::use_debug)]`
|
|
|
|
error: use of `println!`
|
|
--> tests/ui/print.rs:25:5
|
|
|
|
|
LL | println!("Hello");
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::print-stdout` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::print_stdout)]`
|
|
|
|
error: use of `print!`
|
|
--> tests/ui/print.rs:28:5
|
|
|
|
|
LL | print!("Hello");
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: use of `print!`
|
|
--> tests/ui/print.rs:31:5
|
|
|
|
|
LL | print!("Hello {}", "World");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of `print!`
|
|
--> tests/ui/print.rs:34:5
|
|
|
|
|
LL | print!("Hello {:?}", "World");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of `Debug`-based formatting
|
|
--> tests/ui/print.rs:34:19
|
|
|
|
|
LL | print!("Hello {:?}", "World");
|
|
| ^^^^
|
|
|
|
error: use of `print!`
|
|
--> tests/ui/print.rs:38:5
|
|
|
|
|
LL | print!("Hello {:#?}", "#orld");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of `Debug`-based formatting
|
|
--> tests/ui/print.rs:38:19
|
|
|
|
|
LL | print!("Hello {:#?}", "#orld");
|
|
| ^^^^^
|
|
|
|
error: aborting due to 8 previous errors
|
|
|