Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/varargs/kt3213.kt
T

8 lines
129 B
Kotlin
Vendored

// FIR_IDENTICAL
// !CHECK_TYPE
fun test(a: Array<out String>) {
val b = a.toList()
b checkType { _<List<String>>() }
}