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