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