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