Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/DataClassWithMutableField.kt
T
2015-09-25 13:02:46 +03:00

13 lines
154 B
Kotlin
Vendored

class Test(count: Int) {
var count: Int = 0
private set
init {
this.count = count
}
fun inc() {
count++
}
}