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