Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
superSecondary.kt
blob: 8ca7fc13f10c808e0c2fa4df953c95a05ef799b1 [
file
] [
log
] [
blame
]
open
class
B
{
constructor
(
x
:
Int
)
{}
}
interface
C
class
A
:
B
,
C
{
<caret>
constructor
():
super
(
1
)
{
}
}