Files
kotlin/compiler/fir/analysis-tests/testData/resolve/arguments/lambdaInUnresolvedCall.kt

15 lines
214 B
Kotlin
Vendored

fun <R> materialize(): R = null!!
fun test_1() {
<!UNRESOLVED_REFERENCE!>myRun<!> {
val x = 1
x * 2
}
}
fun test_2() {
<!UNRESOLVED_REFERENCE!>myRun<!> {
materialize()
}
}