mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 09:36:06 +00:00
12 lines
190 B
Rust
Executable File
12 lines
190 B
Rust
Executable File
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#[deny(print_stdout)]
|
|
|
|
fn main() {
|
|
println!("Hello"); //~ERROR use of `println!`
|
|
print!("Hello"); //~ERROR use of `print!`
|
|
|
|
vec![1, 2];
|
|
}
|