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

13 lines
168 B
Kotlin

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