mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
167 B
Swift
12 lines
167 B
Swift
// RUN: %target-swift-frontend %s -emit-module
|
|
|
|
protocol P2 {
|
|
func f1<T : P1>(_: T) -> T.T1
|
|
}
|
|
|
|
public struct S1<U> {}
|
|
|
|
protocol P1 {
|
|
typealias T1 = S1<Self>
|
|
}
|