e41a34af88
* Add `Nested lambda has shadowed implicit parameter` inspection #KT-11850 Fixed * KT-11850 Fixed
8 lines
94 B
Kotlin
Vendored
8 lines
94 B
Kotlin
Vendored
fun foo(f: (String) -> Unit) {}
|
|
|
|
fun test() {
|
|
foo {
|
|
<caret>foo {
|
|
}
|
|
}
|
|
} |