summaryrefslogtreecommitdiff
path: root/tests/structs/bug654646.vala
blob: 3a6597407de236556a57bd58754eeaf736c3b315 (plain)
1
2
3
4
5
6
7
8
9
10
void foo (int i, ...) {
	va_list v = va_list ();
	bar (v);
}

void bar (va_list v) {
}

void main () {
}