rust-analyzer/crates/ide_assists
Terry Sun 324d7d33e8 Add assist for replacing turbofish with explicit type.
Converts `::<_>` to an explicit type assignment.

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

Closes #10285
2021-10-24 17:38:45 -07:00
..
src Add assist for replacing turbofish with explicit type. 2021-10-24 17:38:45 -07:00
Cargo.toml Set MSRV 2021-10-23 15:07:11 +03:00