210a1d5ece
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> |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |