blob: fa07e74a7be47ef865870592b5e5e72d5dca284a [file] [log] [blame]
#![warn(clippy::print_stderr)]
fn main() {
eprintln!("Hello");
println!("This should not do anything");
eprint!("World");
print!("Nor should this");
}