summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/print_stderr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/print_stderr.stderr')
-rw-r--r--src/tools/clippy/tests/ui/print_stderr.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/print_stderr.stderr b/src/tools/clippy/tests/ui/print_stderr.stderr
new file mode 100644
index 000000000..5af735af6
--- /dev/null
+++ b/src/tools/clippy/tests/ui/print_stderr.stderr
@@ -0,0 +1,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
+