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

16 lines
222 B
Kotlin

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