Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
superSecondaryOverload.kt
blob: 40df040e867a150c97041125135a81b56b91303d [
file
] [
log
] [
blame
]
open
class
B
(
x
:
Double
)
{
constructor
(
x
:
Int
)
{}
constructor
(
x
:
String
)
{}
}
interface
C
class
A
:
B
,
C
{
<caret>
constructor
():
super
(
"abc"
)
{
}
}