Files
kotlin-fork/compiler/testData/resolvedCalls/arguments/functionLiterals/simpleLambda.kt
T

5 lines
74 B
Kotlin

fun foo(f: (Int) -> String) {}
fun test() {
<caret>foo { x -> "$x"}
}