blob: 02692445324f645ee36b4c4856b2b1c0a5671bd1 [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir
struct DefaultAssociatedType {
}
protocol Protocol {
associatedtype AssociatedType = DefaultAssociatedType
init(object: AssociatedType)
}
final class Conformance: Protocol {
private let object: AssociatedType
init(object: AssociatedType) {
self.object = object
}
}