Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
kt35730.kt.txt
blob: 44446d56be052f187439de4c5c80c51f150ecf39 [
file
]
interface Base {
fun foo() {
}
}
object Derived : Base {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
fun test() {
Derived.foo()
Derived.foo()
}