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