20 lines
344 B
Kotlin
Vendored
20 lines
344 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// FILE: Definitions.kt
|
|
import interop.*
|
|
|
|
object Definitions {
|
|
const val KT_CONSTANT = Interface.CONSTANT
|
|
|
|
val ktValue = Interface.CONSTANT
|
|
}
|
|
|
|
fun box(): String =
|
|
Definitions.ktValue
|
|
|
|
// FILE: interop/Interface.java
|
|
package interop;
|
|
|
|
public class Interface {
|
|
public static final String CONSTANT = "OK";
|
|
}
|