Files
kotlin-fork/compiler/testData/codegen/box/jvmStatic/protectedInSuperClass/simpleProperty.kt
T
2021-03-31 00:08:52 +02:00

27 lines
369 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// IGNORE_BACKEND: JVM
// WITH_RUNTIME
// FILE: 1.kt
package a
open class A {
companion object {
@JvmStatic
@get:JvmStatic
@set:JvmStatic
protected var foo = "Fail"
}
}
// FILE: 2.kt
import a.*
class B : A() {
fun bar(): String {
foo = "OK"
return foo
}
}
fun box() = B().bar()