98407a7c4b
A set of tests provided.
7 lines
178 B
Kotlin
Vendored
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
|
|
} |