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

12 lines
177 B
Kotlin
Vendored

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