Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/jvmFieldInInterfaceCompanion.kt
T
2018-08-28 13:48:44 +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
}