Files
kotlin-fork/idea/testData/inspectionsLocal/nestedLambdaShadowedImplicitParameter/implicitGrandParent.kt.after
T

12 lines
176 B
Plaintext
Vendored

fun foo(f: (String) -> Unit) {}
fun bar(s: String) {}
fun test() {
foo { it ->
foo { s ->
foo {
bar(it)
}
}
}
}