Files
kotlin-fork/compiler/testData/codegen/box/vararg/kt37715.kt
T
2023-02-28 10:19:15 +00:00

11 lines
169 B
Kotlin
Vendored

// WITH_STDLIB
import kotlin.collections.toList
fun <T: Number> foo(vararg values: T) = values.toList()
fun box(): String {
val a = foo(1, 4.5)
return "OK"
}