10 lines
146 B
Java
Vendored
10 lines
146 B
Java
Vendored
package test;
|
|
|
|
import static test.kotlin.KotlinEnum.ENTRY;
|
|
|
|
public class EnumStaticImportInJava {
|
|
void other() {
|
|
ENTRY.foo();
|
|
}
|
|
}
|