2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-01-09 11:48:44 +00:00
rust-clippy/tests/ui/print_stderr.stderr

18 lines
425 B
Text
Raw Normal View History

error: use of `eprintln!`
2024-02-17 12:16:29 +00:00
--> tests/ui/print_stderr.rs:4:5
|
LL | eprintln!("Hello");
| ^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::print-stderr` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::print_stderr)]`
error: use of `eprint!`
2024-02-17 12:16:29 +00:00
--> tests/ui/print_stderr.rs:8:5
|
LL | eprint!("World");
| ^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors