Files
kotlin-fork/compiler/testData/codegen/box/jvmField/kt48295.kt
T

22 lines
282 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FILE: a.kt
package a
open class A {
@JvmField protected var result = "Fail"
}
// FILE: b.kt
class B : a.A() {
fun test(): String {
super.result = "OK"
return super.result
}
}
fun box(): String = B().test()