Files
kotlin/compiler/testData/codegen/properties/fieldSetterPlusEq.kt

8 lines
125 B
Kotlin
Vendored

var collector: String = ""
set(it) { field += it }
fun append(s: String): String {
collector = s;
return collector;
}