]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/workspace_test/build.rs
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[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 }