summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/print_macro/print_macro.stderr
blob: d4b1ae84fd7dca431c88afbab3f7d197c357bae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: use of `print!`
  --> $DIR/print_macro.rs:6:5
   |
LL |     print!("{n}");
   |     ^^^^^^^^^^^^^
   |
   = note: `-D clippy::print-stdout` implied by `-D warnings`

error: use of `eprint!`
  --> $DIR/print_macro.rs:7:5
   |
LL |     eprint!("{n}");
   |     ^^^^^^^^^^^^^^
   |
   = note: `-D clippy::print-stderr` implied by `-D warnings`

error: aborting due to 2 previous errors