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