Files
kotlin-fork/compiler/testData/ir/irText/errors/suppressedNonPublicCall.kt.txt
T
2020-11-26 00:14:25 +03:00

17 lines
156 B
Plaintext
Vendored

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