blob: c0e30902d34545d003a7c96905bf87b67389270c [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
protocol A {
associatedtype B
}
extension A {
func foo() {
(B.self as! Sequence.Type).Element
}
}