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

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
})
}