rust-clippy/tests/ui/print_with_newline.rs

21 lines
631 B
Rust
Raw Normal View History

2016-08-05 15:52:58 +00:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(print_with_newline)]
fn main() {
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
print!("{}\n", 1265); //~ERROR using `print!()` with a format string
2016-08-05 15:52:58 +00:00
// these are all fine
print!("");
print!("Hello");
2016-08-05 15:52:58 +00:00
println!("Hello");
println!("Hello\n");
println!("Hello {}\n", "world");
print!("Issue\n{}", 1265);
print!("{}", 1265);
2016-10-12 10:00:26 +00:00
print!("\n{}", 1275);
2016-08-05 15:52:58 +00:00
}