Files
kotlin-fork/compiler/testData/codegen/box/vararg/kt37715.kt
T

13 lines
209 B
Kotlin
Vendored

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