blob: 8603bc6e38aeec63cce7a57b0e4638eddd133477 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fgnu89-inline" } */
#include <stdarg.h>
inline __attribute__ ((always_inline)) void
e(int t, ...) /* { dg-error "variable argument lists" } */
{
va_list q;
va_start (q, t);
}