3394097f47
To test production resolveToFirSymbol entry point ^KT-57850
9 lines
148 B
Kotlin
9 lines
148 B
Kotlin
fun resolve<caret>Me() {
|
|
receive(functionWithLazyBody())
|
|
}
|
|
|
|
fun receive(value: String){}
|
|
|
|
fun functionWithLazyBody(): String {
|
|
return "42"
|
|
} |