2017-02-07 20:05:30 +00:00
|
|
|
error: use of `Debug`-based formatting
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:11:20
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | write!(f, "{:?}", 43.1415)
|
2021-03-25 18:29:11 +00:00
|
|
|
| ^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::use-debug` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::use_debug)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: use of `println!`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:25:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("Hello");
|
2018-07-22 22:19:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::print-stdout` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::print_stdout)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: use of `print!`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:28:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello");
|
2018-07-22 22:19:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: use of `print!`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:31:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {}", "World");
|
2018-07-22 22:19:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: use of `print!`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:34:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {:?}", "World");
|
2018-07-22 22:19:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: use of `Debug`-based formatting
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:34:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {:?}", "World");
|
2021-03-25 18:29:11 +00:00
|
|
|
| ^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: use of `print!`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:38:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {:#?}", "#orld");
|
2018-07-22 22:19:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: use of `Debug`-based formatting
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/print.rs:38:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {:#?}", "#orld");
|
2021-03-25 18:29:11 +00:00
|
|
|
| ^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-14 15:28:20 +00:00
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|