rust-clippy/tests/workspace_test/build.rs
2022-01-10 17:08:22 -06:00

7 lines
112 B
Rust

#![deny(clippy::print_stdout)]
fn main() {
// Test for #6041
println!("Hello");
print!("Hello");
}