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

12 lines
159 B
Kotlin
Vendored

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