c34b417d0c
#KT-34744
7 lines
118 B
Plaintext
Vendored
7 lines
118 B
Plaintext
Vendored
fun bar(f: (Int, Int) -> String) {}
|
|
|
|
fun test() {
|
|
bar(fun(i: Int, j: Int): String {
|
|
return "$i$j"
|
|
})
|
|
} |