compiler/testData/codegen/properties/privateVar.kt (5 lines of code) (raw):

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