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