Dmitry Stakhov
11/15/2023, 10:38 AMinterface MyInt {
fun boo()
fun buz()
}
open class Base {
fun buz() {
//
}
}
class Impl: MyInt, Base() {
override fun boo() {
//
}
}
Foso
11/16/2023, 2:56 PMDmitry Stakhov
11/16/2023, 4:02 PMBase
class implicitly overrides fun buz
. There is no override fun buz
in class Imp
CLOVIS
11/17/2023, 1:17 PMwasyl
11/17/2023, 1:21 PMCLOVIS
11/17/2023, 1:23 PM