12 lines
203 B
Plaintext
Vendored
12 lines
203 B
Plaintext
Vendored
Resolve target: fun foo(): kotlin.Int
|
|
----------------------------------------------
|
|
class C {
|
|
init {
|
|
<caret>foo()
|
|
/* STATEMENT DELETED: bar() */
|
|
}
|
|
}
|
|
|
|
fun foo() = 1
|
|
fun bar() = 2
|