mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
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();
|
|
}
|
|
}
|