5 lines
74 B
Kotlin
5 lines
74 B
Kotlin
fun foo(f: (Int) -> String) {}
|
|
|
|
fun test() {
|
|
<caret>foo { x -> "$x"}
|
|
} |