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-19 14:00:24 +02:00
2021-10-12 14:41:59 +02:00
2021-10-12 14:41:59 +02:00
2021-10-01 12:19:01 +02:00
2021-10-12 14:41:59 +02:00
2021-10-13 14:39:37 +02:00
2021-10-05 09:00:18 +11:00
2021-10-13 14:39:37 +02:00
2021-10-19 23:46:43 +09:00
2021-10-14 10:47:11 +00:00
2021-10-22 09:16:56 +00:00
2021-10-13 14:39:37 +02:00
2021-10-13 14:39:37 +02:00
2021-10-25 21:46:44 +02:00
2021-10-12 14:41:59 +02:00
2021-10-06 10:14:12 +08:00
2021-10-16 13:16:22 +03:00
2021-10-20 21:35:35 +02:00
2021-10-20 21:35:35 +02:00
2021-10-13 14:39:37 +02:00
2021-10-13 14:39:37 +02:00
2021-10-12 14:41:59 +02:00
2021-10-13 14:39:37 +02:00
2021-10-13 14:39:37 +02:00
2021-10-13 14:39:37 +02:00
2021-10-14 21:49:46 +02:00
2021-10-05 09:00:21 +11:00
2021-10-21 23:42:14 -07:00
2021-10-21 23:42:14 -07:00
2021-10-14 21:49:46 +02:00
2021-10-16 13:36:06 +03:00
2021-10-18 14:45:24 +02:00
2021-10-14 22:41:06 +00:00
2021-10-07 15:00:14 +02:00
2021-10-22 09:23:29 +03:00
2021-10-27 10:58:31 -07:00
2021-10-13 14:39:37 +02:00
2021-10-19 14:54:29 +02:00