1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 #include <stdarg.h>
4 inline __attribute__ ((always_inline)) void
e(int t,...)5 e(int t, ...) /* { dg-error "variable argument lists" } */
6 {
7   va_list q;
8   va_start (q, t);
9 }
10