mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
162 B
Kotlin
Vendored
10 lines
162 B
Kotlin
Vendored
fun box(): String {
|
|
class Local {
|
|
var result = "Fail"
|
|
}
|
|
|
|
val l = Local()
|
|
(Local::result).set(l, "OK")
|
|
return (Local::result).get(l)
|
|
}
|