rust/tests/compile-fail/print_with_newline.rs
2016-08-16 20:52:48 +02:00

16 lines
461 B
Rust
Executable File

#![feature(plugin)]
#![plugin(clippy)]
#![deny(print_with_newline)]
fn main() {
print!("Hello");
print!("Hello\n"); //~ERROR using `print!()` with a format string
print!("Hello {}\n", "world"); //~ERROR using `print!()` with a format string
print!("Hello {} {}\n\n", "world", "#2"); //~ERROR using `print!()` with a format string
// these are all fine
println!("Hello");
println!("Hello\n");
println!("Hello {}\n", "world");
}