Files
kotlin-fork/j2k/tests/testData/ast/dropAccessors/DropGetterForMutable.kt
T
2014-10-14 21:23:24 +04:00

9 lines
113 B
Kotlin

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