Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/reflection/properties/privateToThisAccessors.kt
T

17 lines
293 B
Kotlin
Vendored

import kotlin.reflect.jvm.*
class K<in T : String> {
private var t: T
get() = "OK" as T
set(value) {}
fun run(): String {
val p = ::t
p.isAccessible = true
p.set(this, "" as T)
return p.get(this)
}
}
fun box() = K<String>().run()