Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/regression/ea63992.kt
T

7 lines
178 B
Kotlin
Vendored

fun add(a: Int, b: Int) = a + b
interface A {
fun shuffle<T>(x: List<T>): List<T>
fun foo<T>(f : (List<T>) -> List<T>, x : List<T>)
fun f() : (Int, Int) -> Int = ::add
}