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