5 lines
85 B
Kotlin
Vendored
5 lines
85 B
Kotlin
Vendored
fun bar(f: (Int, Int) -> String) {}
|
|
|
|
fun test() {
|
|
bar <caret>{ i, j -> "$i$j" }
|
|
} |