Files
kotlin/compiler/testData/codegen/box/callableReference/property/localClassVar.kt
2019-11-19 11:00:09 +03:00

11 lines
192 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
class Local {
var result = "Fail"
}
val l = Local()
(Local::result).set(l, "OK")
return (Local::result).get(l)
}