blob: 0b1fe5e17e51db221bc58f8ac8cd03df09c17182 [file] [log] [blame]
package a
class A(val c: Int = 1) {
var d = 2
val g: Int
get() = d
fun j() = c
<selection>fun f() = c + d + g + j()</selection>
}