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