]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/format.stderr
543bfe4a07ed355f97469ca4f5ea8a38c1df6dec
[rust.git] / clippy_tests / examples / format.stderr
1 error: useless use of `format!`
2  --> format.rs:6:5
3   |
4 6 |     format!("foo");
5   |     ^^^^^^^^^^^^^^^
6   |
7   = note: `-D useless-format` implied by `-D warnings`
8
9 error: useless use of `format!`
10  --> format.rs:8:5
11   |
12 8 |     format!("{}", "foo");
13   |     ^^^^^^^^^^^^^^^^^^^^^
14   |
15   = note: `-D useless-format` implied by `-D warnings`
16
17 error: useless use of `format!`
18   --> format.rs:15:5
19    |
20 15 |     format!("{}", arg);
21    |     ^^^^^^^^^^^^^^^^^^^
22    |
23    = note: `-D useless-format` implied by `-D warnings`
24
25 error: aborting due to previous error(s)
26
27 error: Could not compile `clippy_tests`.
28
29 To learn more, run the command again with --verbose.