Files
kotlin-fork/analysis/low-level-api-fir/testdata/lazyResolve/topLevelFunctions.kt
T

9 lines
141 B
Kotlin

fun resolveMe() {
receive(functionWithLazyBody())
}
fun receive(value: String){}
fun functionWithLazyBody(): String {
return "42"
}