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