Files
kotlin/compiler/testData/codegen/properties/privateVar.jet
2011-10-20 16:21:18 +02:00

7 lines
115 B
Plaintext

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