Files
kotlin-fork/compiler/testData/diagnostics/tests/varargs/kt2163.kt
T

8 lines
164 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun printAll(vararg a : Any) {}
fun main(args: Array<String>) {
printAll(*args) // Shouldn't be an error
}