blob: d2adb08a411fc3e0705374ced7fbfb87a77326a0 [file] [log] [blame]
// EXTRACTION_TARGET: property with initializer
class A {
val i: Int
init {
i = 1
}
fun foo(): Int {
return <selection>1 + 2</selection>
}
}