11 lines
210 B
Rust
Executable file
11 lines
210 B
Rust
Executable file
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(useless_format)]
|
|
|
|
fn main() {
|
|
format!("foo"); //~ERROR useless use of `format!`
|
|
format!("foo {}", 42);
|
|
|
|
println!("foo");
|
|
println!("foo {}", 42);
|
|
}
|