summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/print_stderr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/print_stderr.rs')
-rw-r--r--src/tools/clippy/tests/ui/print_stderr.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/print_stderr.rs b/src/tools/clippy/tests/ui/print_stderr.rs
index fa07e74a7..109f43ffe 100644
--- a/src/tools/clippy/tests/ui/print_stderr.rs
+++ b/src/tools/clippy/tests/ui/print_stderr.rs
@@ -2,7 +2,10 @@
fn main() {
eprintln!("Hello");
+ //~^ ERROR: use of `eprintln!`
+ //~| NOTE: `-D clippy::print-stderr` implied by `-D warnings`
println!("This should not do anything");
eprint!("World");
+ //~^ ERROR: use of `eprint!`
print!("Nor should this");
}