Sign in
fuchsia
/
third_party
/
swift
/
d9a65f41d78ea687c3a0d882064cc72ae2d34ea8
/
.
/
validation-test
/
compiler_crashers_2_fixed
/
0147-rdar38505436.swift
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
()
{}
}