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