blob: c87c34a27e81f8b5f24fb4949a7762ebd2f35a70 [file] [log] [blame]
// EXTRACTION_TARGET: property with initializer
class A(val n: Int) {
fun foo(k: Int) {
val a = <selection>n + 1</selection>
val b = n + 1 - 2
val c = foo(n + 1)
}
}