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

10 lines
184 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun bar(vararg a: String) {}
fun test2(a: Array<String>, b: Array<out String>) {
bar(*a)
bar(*b)
bar("", *a, *b, "")
}