76c651421b
Now they are not visible by short name through companion objects, just like classifiers in KT-21515 ^KT-25333 In progress
10 lines
205 B
Kotlin
Vendored
10 lines
205 B
Kotlin
Vendored
open class Base {
|
|
companion object : Java()
|
|
}
|
|
|
|
class Derived : Base() {
|
|
fun test() {
|
|
val x = <selection>Java.field</selection>;
|
|
val y = <selection>Java.method()</selection>;
|
|
}
|
|
} |