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