blob: a086dfd37758de3b6ef806e3fd2fb10175bfbe4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![warn(clippy::print_stderr)]
fn main() {
eprintln!("Hello");
//~^ print_stderr
println!("This should not do anything");
eprint!("World");
//~^ print_stderr
print!("Nor should this");
}
|