a0162adbf9
#KT-26710 Fixed
14 lines
190 B
Kotlin
Vendored
14 lines
190 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
fun foo(f: (String) -> Unit) {}
|
|
fun bar(s: String) {}
|
|
|
|
fun test() {
|
|
foo {
|
|
foo {
|
|
foo {
|
|
bar(it<caret>)
|
|
}
|
|
}
|
|
}
|
|
} |