Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49ce95ac6651db5c91015f9b0de5c3bff2185e61
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
varargs.kt
blob: 2518a7dae3ee396a5090000f3bb82b17a31a4b3f [
file
]
open
class
B
{
constructor
(
vararg x
:
Int
)
{}
}
class
A
:
B
{
<caret>
constructor
(
vararg x
:
Int
):
super
(*
x
,
*
intArrayOf
(
1
,
2
,
3
),
4
)
{}
}