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

12 lines
154 B
Kotlin
Vendored

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