mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
efca93e632
The tests show that there's some round-tripping issue; I will investigate this next.
6 lines
145 B
Swift
6 lines
145 B
Swift
|
|
public func makeSomeClosures<T, U>(t: T, x: Int, y: C1<U>)
|
|
-> (() -> (), () -> (), () -> ()) {
|
|
return ({ _ = t }, { _ = x }, { _ = y })
|
|
}
|