Files
kotlin/compiler/testData/codegen/properties/privateVar.kt
2013-01-24 21:12:27 +04:00

7 lines
115 B
Kotlin
Vendored

class PrivateVar() {
private var x = 0;
fun setValueOfX(aValue: Int) { x = aValue }
fun getValueOfX() = x
}