Avatar
init はサブクラスから不可視なわけではなくて、オーバーライドしないと普通に使えるからいいのか?? @swift-5.2.5 class C1 { init(_ x: Int) {} } class C2: C1 {} print(C2(42))