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