a0162adbf9
#KT-26710 Fixed
15 lines
238 B
Kotlin
Vendored
15 lines
238 B
Kotlin
Vendored
// FIX: Replace 'it' with explicit parameter
|
|
|
|
fun foo(f: (String) -> Unit) {}
|
|
fun bar(s: String) {}
|
|
|
|
fun test() {
|
|
foo {
|
|
bar(it)
|
|
foo {
|
|
bar(it)
|
|
bar(it)
|
|
bar(it<caret>)
|
|
}
|
|
}
|
|
} |