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.
11 lines
207 B
Plaintext
Vendored
11 lines
207 B
Plaintext
Vendored
Resolve target: fun f(): kotlin.Unit
|
|
----------------------------------------------
|
|
class C {
|
|
fun f(){}
|
|
}
|
|
|
|
fun foo() {
|
|
val lambda = { -> /* STATEMENT DELETED: x() */; C() }
|
|
lambda().<caret>f()
|
|
}
|