2018-07-28 15:34:52 +00:00
|
|
|
|
#![feature(tool_lints)]
|
|
|
|
|
#![allow(clippy::print_literal)]
|
|
|
|
|
#![warn(clippy::useless_format)]
|
2016-02-20 16:35:07 +00:00
|
|
|
|
|
2018-04-05 05:52:26 +00:00
|
|
|
|
struct Foo(pub String);
|
|
|
|
|
|
|
|
|
|
macro_rules! foo {
|
|
|
|
|
($($t:tt)*) => (Foo(format!($($t)*)))
|
|
|
|
|
}
|
|
|
|
|
|
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");
|
2018-04-12 06:21:03 +00:00
|
|
|
|
format!("{:?}", "foo"); // don't warn about debug
|
|
|
|
|
format!("{:8}", "foo");
|
2018-10-02 21:54:50 +00:00
|
|
|
|
format!("{:width$}", "foo", width = 8);
|
2018-04-12 06:21:03 +00:00
|
|
|
|
format!("{:+}", "foo"); // warn when the format makes no difference
|
|
|
|
|
format!("{:<}", "foo"); // warn when the format makes no difference
|
2016-02-22 16:54:46 +00:00
|
|
|
|
format!("foo {}", "bar");
|
|
|
|
|
format!("{} bar", "foo");
|
|
|
|
|
|
|
|
|
|
let arg: String = "".to_owned();
|
2017-02-08 13:58:07 +00:00
|
|
|
|
format!("{}", arg);
|
2018-04-12 06:21:03 +00:00
|
|
|
|
format!("{:?}", arg); // don't warn about debug
|
|
|
|
|
format!("{:8}", arg);
|
2018-10-02 21:54:50 +00:00
|
|
|
|
format!("{:width$}", arg, width = 8);
|
2018-04-12 06:21:03 +00:00
|
|
|
|
format!("{:+}", arg); // warn when the format makes no difference
|
|
|
|
|
format!("{:<}", arg); // warn when the format makes no difference
|
2016-02-22 16:54:46 +00:00
|
|
|
|
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);
|
2018-04-05 05:52:26 +00:00
|
|
|
|
|
|
|
|
|
// A format! inside a macro should not trigger a warning
|
|
|
|
|
foo!("should not warn");
|
2018-10-02 21:55:25 +00:00
|
|
|
|
|
|
|
|
|
// precision on string means slicing without panicking on size:
|
|
|
|
|
format!("{:.1}", "foo"); // could be "foo"[..1]
|
|
|
|
|
format!("{:.10}", "foo"); // could not be "foo"[..10]
|
|
|
|
|
format!("{:.prec$}", "foo", prec = 1);
|
|
|
|
|
format!("{:.prec$}", "foo", prec = 10);
|
2016-02-20 16:35:07 +00:00
|
|
|
|
}
|