7 lines
112 B
Kotlin
Vendored
7 lines
112 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
fun test(a: Array<out String>) {
|
|
val b = a.toList()
|
|
|
|
b checkType { _<List<String>>() }
|
|
} |