class D { var foo = 1 private set fun foo() { foo = 2 } } fun box(): String { D().foo() return "OK" }