da4be8a0f5
#KT-7484 fixed
10 lines
237 B
Java
Vendored
10 lines
237 B
Java
Vendored
import static Foo.*;
|
|
|
|
class JavaUsage {
|
|
public static void main(String[] args) {
|
|
System.out.println(Foo.CONST);
|
|
Foo.s();
|
|
Foo.Companion.f();
|
|
Foo foo = new Foo(); // not usage of companion object
|
|
}
|
|
} |