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

11 lines
121 B
Kotlin
Vendored

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