blob: b1dd8d00b47f78eb61393fe4a325c4d6586f68ce [file] [log] [blame]
// TARGET_BACKEND: JVM
// WITH_STDLIB
// FILE: a.kt
package a
open class A {
@JvmField protected var result = "Fail"
}
open class AA : A()
// FILE: b.kt
class B : a.AA() {
fun test(): String {
super.result = "OK"
return super.result
}
}
fun box(): String = B().test()