Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/ClassInitializerHasNoValue.dump
T
2015-07-16 13:49:20 +03:00

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