blob: 54013f9ef98b8d775b16bdfa2dfb9f4967f55d5d [file]
// 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"
}