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

9 lines
87 B
Kotlin
Vendored

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