open class Base { companion object : Java() } class Derived : Base() { fun test() { val x = Java.field; val y = Java.method(); } }