2017-09-18 05:47:33 -05:00
|
|
|
|
|
2018-04-01 18:24:25 -05:00
|
|
|
|
#![allow(print_literal)]
|
2017-05-17 07:19:44 -05:00
|
|
|
|
#![warn(useless_format)]
|
2016-02-20 10:35:07 -06:00
|
|
|
|
|
2018-04-05 00:52:26 -05:00
|
|
|
|
struct Foo(pub String);
|
|
|
|
|
|
|
|
|
|
macro_rules! foo {
|
|
|
|
|
($($t:tt)*) => (Foo(format!($($t)*)))
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-20 10:35:07 -06:00
|
|
|
|
fn main() {
|
2017-02-08 07:58:07 -06:00
|
|
|
|
format!("foo");
|
2016-02-22 10:54:46 -06:00
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
|
format!("{}", "foo");
|
2016-02-22 10:54:46 -06: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 07:58:07 -06:00
|
|
|
|
format!("{}", arg);
|
2016-02-22 10:54:46 -06: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 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);
|
2018-04-05 00:52:26 -05:00
|
|
|
|
|
|
|
|
|
// A format! inside a macro should not trigger a warning
|
|
|
|
|
foo!("should not warn");
|
2016-02-20 10:35:07 -06:00
|
|
|
|
}
|