]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/print_stderr.stderr
Auto merge of #80209 - erikdesjardins:ptrcmp, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / tests / ui / print_stderr.stderr
1 error: use of `eprintln!`
2   --> $DIR/print_stderr.rs:4:5
3    |
4 LL |     eprintln!("Hello");
5    |     ^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::print-stderr` implied by `-D warnings`
8
9 error: use of `eprint!`
10   --> $DIR/print_stderr.rs:6:5
11    |
12 LL |     eprint!("World");
13    |     ^^^^^^^^^^^^^^^^
14
15 error: aborting due to 2 previous errors
16