Avatar
@swift-5.2.5 class C1 { init(_ x: Int) {} } class C2: C1 { init(_ x: String) { super.init(42) } }