mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +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);
|
||
|
}
|