]> git.lizzy.rs Git - rust.git/blob - tests/ui/format.stderr
Merge pull request #2574 from mark-i-m/i128
[rust.git] / tests / ui / format.stderr
1 error: useless use of `format!`
2  --> $DIR/format.rs:6:5
3   |
4 6 |     format!("foo");
5   |     ^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string()`
6   |
7   = note: `-D useless-format` implied by `-D warnings`
8
9 error: aborting due to previous error
10