19d1532dc7
#KT-14021 Fixed
13 lines
164 B
Kotlin
Vendored
13 lines
164 B
Kotlin
Vendored
// "Add parameter to function 'foo'" "true"
|
|
// DISABLE-ERRORS
|
|
fun foo() {}
|
|
|
|
fun bar(f: (String) -> Unit) {}
|
|
|
|
fun test() {
|
|
bar {
|
|
foo(it<caret>)
|
|
}
|
|
}
|
|
|