mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
175 B
Kotlin
Vendored
16 lines
175 B
Kotlin
Vendored
// FILE: test/En.java
|
|
|
|
package test;
|
|
|
|
public enum En {
|
|
ENTRY;
|
|
|
|
public static String foo() {
|
|
return "OK";
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box() = test.En.foo()
|