mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
12 lines
210 B
Rust
12 lines
210 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(clippy)]
|
||
|
#![deny(useless_format)]
|
||
|
|
||
|
fn main() {
|
||
|
format!("foo"); //~ERROR useless use of `format!`
|
||
|
format!("foo {}", 42);
|
||
|
|
||
|
println!("foo");
|
||
|
println!("foo {}", 42);
|
||
|
}
|