blob: fc5c8b391a6bd02114ddae3ab026f455f12ce302 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
fun f(vararg t : Int, f : ()->Unit) {
}
fun test() {
f {}
f() {}
f(1) {
}
f(1, 2) {
}
}
/* GENERATED_FIR_TAGS: functionDeclaration, functionalType, integerLiteral, lambdaLiteral, vararg */