]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/workspace_test/build.rs
Rollup merge of #91122 - dtolnay:not, r=m-ou-se
[rust.git] / src / tools / clippy / tests / workspace_test / build.rs
1 #![deny(clippy::print_stdout)]
2
3 fn main() {
4     // Test for #6041
5     println!("Hello");
6     print!("Hello");
7 }