Files
kotlin-fork/idea/testData/slicer/inflow/lambdaImplicitParameter.kt
T

11 lines
109 B
Kotlin
Vendored

// FLOW: IN
fun foo(f: (Int) -> Unit) {
f(1)
}
fun test() {
foo {
val v = <caret>it
}
}