blob: a03d90ea2fbc687e2e1ba472ed5aa4ba902bfd8e [file] [log] [blame]
// 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
}