3f411fc93b
#KT-11994 In Progress
9 lines
146 B
Kotlin
Vendored
9 lines
146 B
Kotlin
Vendored
// FLOW: IN
|
|
|
|
fun foo(a: Int, b: Int, f: (Int) -> (Int) -> Int): Int {
|
|
return f(a)(b)
|
|
}
|
|
|
|
fun test() {
|
|
val <caret>x = foo(1, 2) { { it } }
|
|
} |