Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/localClassVar.kt
T
2020-11-09 16:04:43 +03:00

12 lines
238 B
Kotlin
Vendored

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