mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
10 lines
146 B
Java
10 lines
146 B
Java
package test;
|
|
|
|
import static test.kotlin.KotlinEnum.ENTRY;
|
|
|
|
public class EnumStaticImportInJava {
|
|
void other() {
|
|
ENTRY.foo();
|
|
}
|
|
}
|