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

10 lines
135 B
Plaintext
Vendored

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