Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
varargs
/
kt5534.kt
blob: 879f3e42e27c60c7e42431012ac1b3df3f220776 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
fun test
()
{
val p
:
Array
<
String
>
=
arrayOf
(
"a"
)
foo
(*
p
)
}
fun foo
(
vararg a
:
String
?)
=
a