-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Change how fn(&T) parses #3535
Copy link
Copy link
Closed
Labels
A-grammarArea: The grammar of RustArea: The grammar of RustE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Milestone
Metadata
Metadata
Assignees
Labels
A-grammarArea: The grammar of RustArea: The grammar of RustE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Right now,
fn(&T)parses asfn(&v: T)rather thanfn(v: &T). This should be changed so that modes require explicit variable names. We would also of course then need to update the various legacyfn()types that appear in rustc and elsewhere.