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

12 lines
159 B
Kotlin
Vendored

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