Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/DropGetterForMutable.kt
T
2019-04-03 11:24:19 +03:00

9 lines
87 B
Kotlin
Vendored

class AAA {
var x = 42
private set
fun foo() {
x = 10
}
}