blob: bbbf877a304e8e80b98c25a460bd9646d678f5bc [file]
class A {
fun resolve<caret>Me() {
receive(functionWithLazyBody())
}
val x: Int = 10
get() = field
set(value) {
field = value
}
fun receive(value: String) {}
fun functionWithLazyBody(): String {
return "42"
}
}