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

8 lines
86 B
Kotlin
Vendored

class AAA {
private var x = 42
fun setX(x: Int) {
this.x = x
}
}