mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +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
```
304 KiB
304 KiB