blob: d402be40ca5b277f7bc8af39c75b7386c3044d62 [file] [log] [blame]
// RUN: not %target-typecheck-verify-swift
protocol P1 {
class N1 {
init() {}
}
}
protocol P2 {}
extension P2 {
class N2 {
init() {}
}
}
class C1: P1.N1 {
override init() {}
}
class C2: P2.N2 {
override init() {}
}