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

20 lines
414 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
var storage = 0
var Int.foo: Int
get() {
return this + storage
}
set(value) {
storage = this + value
}
fun box(): String {
val pr = Int::foo
if (pr.get(42) != 42) return "Fail 1: ${pr.get(42)}"
pr.set(200, 39)
if (pr.get(-239) != 0) return "Fail 2: ${pr.get(-239)}"
if (storage != 239) return "Fail 3: $storage"
return "OK"
}