]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/print_stderr.rs
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[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 }