2017-09-18 10:47:33 +00:00
|
|
|
|
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
|
#![warn(useless_format)]
|
2016-02-20 16:35:07 +00:00
|
|
|
|
|
|
|
|
|
fn main() {
|
2017-02-08 13:58:07 +00:00
|
|
|
|
format!("foo");
|
2016-02-22 16:54:46 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
|
format!("{}", "foo");
|
2016-02-22 16:54:46 +00:00
|
|
|
|
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();
|
2017-02-08 13:58:07 +00:00
|
|
|
|
format!("{}", arg);
|
2016-02-22 16:54:46 +00:00
|
|
|
|
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 16:35:07 +00:00
|
|
|
|
format!("foo {}", 42);
|
2016-02-20 20:15:05 +00:00
|
|
|
|
format!("{} bar", 42);
|
2016-02-20 16:35:07 +00:00
|
|
|
|
|
2016-02-22 16:54:46 +00:00
|
|
|
|
// we only want to warn about `format!` itself
|
2016-02-20 16:35:07 +00:00
|
|
|
|
println!("foo");
|
2016-02-22 16:54:46 +00:00
|
|
|
|
println!("{}", "foo");
|
|
|
|
|
println!("foo {}", "foo");
|
|
|
|
|
println!("{}", 42);
|
2016-02-20 16:35:07 +00:00
|
|
|
|
println!("foo {}", 42);
|
|
|
|
|
}
|