rust/crates/ide_assists
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
..
src Merge #10629 2021-10-27 21:40:28 +00:00
Cargo.toml Set MSRV 2021-10-23 15:07:11 +03:00