11 lines
129 B
Kotlin
Vendored
11 lines
129 B
Kotlin
Vendored
// FLOW: IN
|
|
|
|
fun foo(f: (Int) -> Unit) {
|
|
f(1)
|
|
}
|
|
|
|
fun test() {
|
|
foo(fun(value: Int) {
|
|
val <caret>v = value
|
|
})
|
|
} |