mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Expand tuple into N arguments to cover expect parameters.
This covers cases like this:
```swift
func foo(_: (Int, Int) -> Void) {}
foo { (bar: (Int, Int)) in } // used a single tuple type `(Int, Int)`
// instead of two distinct arguments
```
216 KiB
216 KiB