Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
superPrimaryEmpty.kt
blob: dbf60bc57b9646102a1bc06f999155ce97f28fc3 [
file
] [
log
] [
blame
]
open
class
B
interface
C
class
A
:
B
,
C
{
<caret>
constructor
():
super
()
{
}
}