Avatar
@swift-main @swift-4.0.3 class A { init(a: A) { } } class B: A { init() { super.init(a: self) } }