mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
8 lines
168 B
Rust
8 lines
168 B
Rust
#![warn(clippy::print_stderr)]
|
|
|
|
fn main() {
|
|
eprintln!("Hello");
|
|
println!("This should not do anything");
|
|
eprint!("World");
|
|
print!("Nor should this");
|
|
}
|