mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
259 B
Swift
10 lines
259 B
Swift
public typealias A<each T, U, V> = (repeat (each T, U, V))
|
|
|
|
public struct G<each T> {
|
|
public typealias B<each U, V> = (repeat A<repeat each T, each U, V>)
|
|
|
|
public struct H<each U> {
|
|
public typealias C<each V> = (repeat B<repeat each U, each V>)
|
|
}
|
|
}
|