Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt35730.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

20 lines
197 B
Plaintext
Vendored

interface Base {
fun foo() {
}
}
object Derived : Base {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
fun test() {
Derived.foo()
Derived.foo()
}