blob: ebbaf4a676200f842cdb7d38f243facb55d83f19 [file] [log] [blame]
// RUN: %target-swift-frontend -emit-sil -verify %s
class Y: X {
required init(_: Z) throws {
try super.init(Z())
}
}
class Z { init() throws {} }
class X {
required init(_: Z) throws {}
}