rust/crates/ide_assists/src/tests
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
..
generated.rs Add assist for replacing turbofish with explicit type. 2021-10-24 17:38:45 -07:00
sourcegen.rs fix generated tests 2021-08-02 19:49:36 +03:00