Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
varargs
/
kt2163.kt
blob: 4c61e24dbdd51240f692763f8c8309b9e2d9a549 [
file
]
// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun printAll
(
vararg a
:
Any
)
{}
fun main
(
args
:
Array
<
String
>)
{
printAll
(*
args
)
// Shouldn't be an error
}