mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
20 lines
412 B
Swift
20 lines
412 B
Swift
// RUN: %target-swift-frontend %s -emit-ir
|
|
|
|
// https://github.com/apple/swift/issues/44940
|
|
|
|
public protocol Proto {
|
|
associatedtype One
|
|
associatedtype Two
|
|
|
|
static func bar<T>(elm: One, t: T) -> T
|
|
}
|
|
|
|
struct S<P: Proto> {
|
|
let x: P.Two
|
|
func foo<T>(_ t: T) -> T where P.Two == P.One {
|
|
let x: P.Two = self.x
|
|
let elm: P.One = x as! P.One
|
|
return P.bar(elm: elm, t: t)
|
|
}
|
|
}
|