Files
kotlin/compiler/testData/codegen/box/extensionProperties/inClassWithPrivateSetter.kt
2014-05-29 21:24:05 +04:00

20 lines
300 B
Kotlin
Vendored

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