blob: 58d8f77aaba58478a53255c173b75250a4129156 [file]
// FIR_IDENTICAL
fun f(vararg t : Int, f : ()->Unit) {
}
fun test() {
f {}
f() {}
f(1) {
}
f(1, 2) {
}
}