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