rust-clippy/tests/ui/format.stderr

11 lines
269 B
Text
Raw Normal View History

error: useless use of `format!`
--> $DIR/format.rs:12:5
|
12 | format!("foo");
| ^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string()`
|
= note: `-D useless-format` implied by `-D warnings`
2018-01-16 16:06:27 +00:00
error: aborting due to previous error