summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/print_stderr.stderr
blob: 5af735af65769b9512f336d38dec186afbeffcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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