73799e2c3c
It's done with similar constructions where possible trying to preserve intended behavior. Some usages are removed because they test exactly the feature that we are going to drop soon.
10 lines
129 B
Kotlin
Vendored
10 lines
129 B
Kotlin
Vendored
fun foo(a: Int, b: String) {}
|
|
|
|
fun f(p: (Int, String) -> Unit){}
|
|
|
|
fun bar() {
|
|
f { a, b -> foo(<caret>) }
|
|
}
|
|
|
|
// EXIST: "a, b"
|