// EXTRACTION_TARGET: property with initializer class A(val n: Int = 1) { val m: Int = 2 fun foo(): Int { return if (n > 1) { m + n + 1 } else 0 } }