rust-clippy/tests/ui/print.stderr

57 lines
1.4 KiB
Text
Raw Normal View History

error: use of `Debug`-based formatting
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:11:20
|
2018-12-27 15:57:55 +00:00
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!`
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:25:5
|
2018-12-27 15:57:55 +00:00
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!`
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:28:5
|
2018-12-27 15:57:55 +00:00
LL | print!("Hello");
| ^^^^^^^^^^^^^^^
error: use of `print!`
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:31:5
|
2018-12-27 15:57:55 +00:00
LL | print!("Hello {}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `print!`
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:34:5
|
2018-12-27 15:57:55 +00:00
LL | print!("Hello {:?}", "World");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:34:19
|
2018-12-27 15:57:55 +00:00
LL | print!("Hello {:?}", "World");
| ^^^^
error: use of `print!`
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:38:5
|
2018-12-27 15:57:55 +00:00
LL | print!("Hello {:#?}", "#orld");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: use of `Debug`-based formatting
2024-02-17 12:16:29 +00:00
--> tests/ui/print.rs:38:19
|
2018-12-27 15:57:55 +00:00
LL | print!("Hello {:#?}", "#orld");
| ^^^^^
2020-01-14 15:28:20 +00:00
error: aborting due to 8 previous errors
2018-01-16 16:06:27 +00:00