Files
kotlin-fork/compiler/testData/codegen/box/jvmStatic/protectedInSuperClass/simpleProperty.kt
T
2023-12-26 10:18:19 +00:00

29 lines
401 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// IGNORE_BACKEND: JVM
// WITH_STDLIB
// JVM_ABI_K1_K2_DIFF: KT-63984
// 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()