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
|
2016-10-06 20:30:03 +00:00
|
|
|
print!("{}\n", 1265); //~ERROR using `print!()` with a format string
|
2016-08-05 15:52:58 +00:00
|
|
|
|
|
|
|
// these are all fine
|
2016-10-06 20:30:03 +00:00
|
|
|
print!("");
|
|
|
|
print!("Hello");
|
2016-08-05 15:52:58 +00:00
|
|
|
println!("Hello");
|
|
|
|
println!("Hello\n");
|
|
|
|
println!("Hello {}\n", "world");
|
2016-10-06 20:30:03 +00:00
|
|
|
print!("Issue\n{}", 1265);
|
|
|
|
print!("{}", 1265);
|
2016-08-05 15:52:58 +00:00
|
|
|
}
|