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

7 lines
176 B
Kotlin
Vendored

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