mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The legacy parser has a special case for code like `fn(:)` which corrects it to `fn(_:)`, but the new `::` token was interfering with cases where there were two adjacent colons (e.g. `fn(::)`). Correct this issue.