Files
kotlin-fork/compiler/testData/ir/irText/errors/suppressedNonPublicCall.kt.txt
T

20 lines
178 B
Plaintext
Vendored

class C {
constructor() /* primary */ {
super/*Any*/()
/* InstanceInitializerCall */
}
internal fun bar() {
}
}
inline fun C.foo() {
<this>.bar()
}