Files
kotlin-fork/idea/testData/intentions/introduceBackingProperty/semicolon.kt.after
T
2015-10-06 16:12:08 +02:00

9 lines
180 B
Plaintext
Vendored

class City(val name: String) {
private var _timeZone: Int = -3
var timeZone : Int
get() = _timeZone
set(value) {
_timeZone = value
};
}