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