Files
kotlin/compiler/testData/codegen/box/jvmField/interfaceCompanion.kt
Mikhael Bogdanov 1d283d243e Support @JvmField on interface properties
#KT-15807 Fixed
2018-07-16 16:13:15 +02: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
}