Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/invokeLambdaAsFunction.fir.kt
T

8 lines
124 B
Kotlin
Vendored

fun test1(i: Int) = { i ->
i
}(i)
fun test2() = <!NO_VALUE_FOR_PARAMETER!>{ i -> i }()<!>
fun test3() = { i -> i }(1)