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