Files
kotlin-fork/compiler/testData/codegen/box/jvmField/interfaceCompanion.kt
T
2020-03-10 15:19:34 +03:00

22 lines
295 B
Kotlin
Vendored

// !LANGUAGE: +JvmFieldInInterface
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FILE: Foo.kt
public class Bar(public val value: String)
interface Foo {
companion object {
@JvmField
val FOO = Bar("OK")
}
}
// FILE: bar.kt
fun box(): String {
return Foo.FOO.value
}