Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0048-issue-44940.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)
}
}