class A(val n: Int) { val foo: Int get() = n + 1 } fun test() { val k = A(1).foo }