22 lines
282 B
Kotlin
Vendored
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()
|