b38a9ee386
In this tests there are two variants: - One extracts the lambda - And another extracts the whole call For some reason, the order of completion variants has been changed in 182
6 lines
119 B
Plaintext
Vendored
6 lines
119 B
Plaintext
Vendored
// ALLOW_MULTIPLE_EXPRESSIONS
|
|
fun bar(x: (Int) -> String) = x(1)
|
|
fun foo() {
|
|
val bar = bar() { y: Int -> "abc" }
|
|
}
|