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
7 lines
122 B
Plaintext
Vendored
7 lines
122 B
Plaintext
Vendored
// ALLOW_MULTIPLE_EXPRESSIONS
|
|
fun bar(x: (Int) -> String) = x(1)
|
|
fun foo() {
|
|
val x = { y: Int -> "abc" }
|
|
bar(x)
|
|
}
|