class Animal { init(aaa: Int) {} } class Cat : Animal { init(bbb: Float) { super.init(aaa: 0) } } Cat.init(aaa: 0) // コンパイルエラー