2020-11-22 12:02:57 -06:00
|
|
|
error: use of `eprintln!`
|
|
|
|
--> $DIR/print_stderr.rs:4:5
|
|
|
|
|
|
|
|
|
LL | eprintln!("Hello");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-stderr` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: use of `eprint!`
|
2020-12-01 04:29:49 -06:00
|
|
|
--> $DIR/print_stderr.rs:6:5
|
2020-11-22 12:02:57 -06:00
|
|
|
|
|
|
|
|
LL | eprint!("World");
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|