Files
kotlin-fork/backend.native/tests/codegen/delegatedProperty/simpleVar.kt
T
Igor Chevdar f534616e19 Added tests.
2017-03-01 14:40:10 +03:00

26 lines
466 B
Kotlin

import kotlin.reflect.KProperty
class Delegate {
var f: Int = 42
operator fun getValue(receiver: Any?, p: KProperty<*>): Int {
println("get ${p.name}")
return f
}
operator fun setValue(receiver: Any?, p: KProperty<*>, value: Int) {
println("set ${p.name}")
f = value
}
}
class C {
var x: Int by Delegate()
}
fun main(args: Array<String>) {
val c = C()
println(c.x)
c.x = 117
println(c.x)
}