Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/DataClassWithMutableField.kt
T

6 lines
69 B
Kotlin
Vendored

class Test(var count: Int) {
fun inc() {
count++
}
}