2020-12-20 10:19:49 -06:00
|
|
|
error: use of `eprintln!`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/print_stderr.rs:4:5
|
2020-12-20 10:19:49 -06:00
|
|
|
|
|
|
|
|
LL | eprintln!("Hello");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-stderr` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::print_stderr)]`
|
2020-12-20 10:19:49 -06:00
|
|
|
|
|
|
|
error: use of `eprint!`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/print_stderr.rs:8:5
|
2020-12-20 10:19:49 -06:00
|
|
|
|
|
|
|
|
LL | eprint!("World");
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|