8 lines
197 B
Kotlin
Vendored
8 lines
197 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun add(a: Int, b: Int) = a + b
|
|
interface A {
|
|
fun <T> shuffle(x: List<T>): List<T>
|
|
fun <T> foo(f : (List<T>) -> List<T>, x : List<T>)
|
|
|
|
fun f() : (Int, Int) -> Int = ::add
|
|
} |