blob: f6d317ec14489ed36a9ae1ac79b0cfcf6d37b81a [file] [log] [blame]
// RUN: not %target-swift-frontend %s -parse
protocol X {
typealias R
}
extension Array : X {
}
let xs = [1,2,3]
func z<A: X>(A) {
}
let ys = z(xs)