summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_join.stderr
blob: 0b14b143affd67db55a42ed5b3d094b0c4aa7815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: called `.collect<Vec<String>>().join("")` on an iterator
  --> $DIR/unnecessary_join.rs:11:10
   |
LL |           .collect::<Vec<String>>()
   |  __________^
LL | |         .join("");
   | |_________________^ help: try using: `collect::<String>()`
   |
   = note: `-D clippy::unnecessary-join` implied by `-D warnings`

error: called `.collect<Vec<String>>().join("")` on an iterator
  --> $DIR/unnecessary_join.rs:20:10
   |
LL |           .collect::<Vec<_>>()
   |  __________^
LL | |         .join("");
   | |_________________^ help: try using: `collect::<String>()`

error: aborting due to 2 previous errors