]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/print_stderr.rs
Merge commit 'dbee13661efa269cb4cd57bb4c6b99a19732b484' into sync_cg_clif-2020-12-27
[rust.git] / src / tools / clippy / tests / ui / print_stderr.rs
1 #![warn(clippy::print_stderr)]
2
3 fn main() {
4     eprintln!("Hello");
5     println!("This should not do anything");
6     eprint!("World");
7     print!("Nor should this");
8 }