blob: 398bc97883fcc4d6743635511302dc6adb5a5f52 [file]
// RUN_PIPELINE_TILL: BACKEND
// 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
}
/* GENERATED_FIR_TAGS: additiveExpression, callableReference, functionDeclaration, functionalType, interfaceDeclaration,
nullableType, typeParameter */