Files
kotlin-fork/compiler/testData/codegen/extensionProperties/topLevelWithSetter.kt
T
2012-11-13 19:03:20 +04:00

10 lines
135 B
Kotlin

var Int.foo: String = "fail"
set(str: String) {
$foo = str
}
fun box(): String {
val i = 1
i.foo = "OK"
return i.foo
}