2016-02-20 10:35:07 -06:00
|
|
|
|
#![feature(plugin)]
|
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
#![deny(useless_format)]
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
format!("foo"); //~ERROR useless use of `format!`
|
2016-02-22 10:54:46 -06:00
|
|
|
|
|
|
|
|
|
format!("{}", "foo"); //~ERROR useless use of `format!`
|
|
|
|
|
format!("{:?}", "foo"); // we only want to warn about `{}`
|
|
|
|
|
format!("{:+}", "foo"); // we only want to warn about `{}`
|
|
|
|
|
format!("foo {}", "bar");
|
|
|
|
|
format!("{} bar", "foo");
|
|
|
|
|
|
|
|
|
|
let arg: String = "".to_owned();
|
|
|
|
|
format!("{}", arg); //~ERROR useless use of `format!`
|
|
|
|
|
format!("{:?}", arg); // we only want to warn about `{}`
|
|
|
|
|
format!("{:+}", arg); // we only want to warn about `{}`
|
|
|
|
|
format!("foo {}", arg);
|
|
|
|
|
format!("{} bar", arg);
|
|
|
|
|
|
|
|
|
|
// we don’t want to warn for non-string args, see #697
|
|
|
|
|
format!("{}", 42);
|
|
|
|
|
format!("{:?}", 42);
|
|
|
|
|
format!("{:+}", 42);
|
2016-02-20 10:35:07 -06:00
|
|
|
|
format!("foo {}", 42);
|
2016-02-20 14:15:05 -06:00
|
|
|
|
format!("{} bar", 42);
|
2016-02-20 10:35:07 -06:00
|
|
|
|
|
2016-02-22 10:54:46 -06:00
|
|
|
|
// we only want to warn about `format!` itself
|
2016-02-20 10:35:07 -06:00
|
|
|
|
println!("foo");
|
2016-02-22 10:54:46 -06:00
|
|
|
|
println!("{}", "foo");
|
|
|
|
|
println!("foo {}", "foo");
|
|
|
|
|
println!("{}", 42);
|
2016-02-20 10:35:07 -06:00
|
|
|
|
println!("foo {}", 42);
|
|
|
|
|
}
|