1 /* { dg-do compile } */
2
3 /* Used to fail in the stdarg pass before fix for PR79908. */
4
5 typedef __builtin_va_list __gnuc_va_list;
6 typedef __gnuc_va_list va_list;
7
8 void testva (int n, ...)
9 {
10 va_list ap;
11 _Complex int i = __builtin_va_arg (ap, _Complex int);
12 }