import kotlin.jvm.jvmStatic open class Base { fun foo() {} } class Derived : Base() { companion object { jvmStatic fun foo() {} } }