class A(val n: Int) { val foo: Boolean get() = n > 1 } fun test() { val t = A(1).foo }