bors[bot] 210a1d5ece
Merge #10629
10629: Add assist for replacing turbofish with explicit type. r=Veykril a=terrynsun

Converts `::<_>` to an explicit type assignment.

```
let args = args.collect::<Vec<String>>();
```
->
```
let args: Vec<String> = args.collect();
```

Closes #10285

Co-authored-by: Terry Sun <terrynsun@gmail.com>
2021-10-27 21:40:28 +00:00
..
2021-10-14 10:47:11 +00:00
2021-10-06 10:14:12 +08:00
2021-10-20 21:35:35 +02:00
2021-10-20 21:35:35 +02:00
2021-10-21 23:42:14 -07:00
2021-10-14 22:41:06 +00:00