(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
c11-stdarg-3.c
       1  /* Test variadic functions with no named parameters not supported in C11, but
       2     diagnostic disabled with -Wno-c11-c2x-compat.  */
       3  /* { dg-do compile } */
       4  /* { dg-options "-std=c11 -pedantic-errors -Wno-c11-c2x-compat" } */
       5  
       6  int f (...);
       7  int g (int (...));
       8  int h (...) { return 0; }