mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
16 lines
343 B
Text
16 lines
343 B
Text
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!`
|
|
--> $DIR/print_stderr.rs:6:5
|
|
|
|
|
LL | eprint!("World");
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|