blob: 0a3045cc4318e75be2db3f4c25456162c8f77fdf [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir
public protocol QHash : Collection, ExpressibleByArrayLiteral {
associatedtype Key where Key == Element
init()
}
extension QHash {
init(withElements newElements: Key...) {
self.init()
}
}