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