libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-stdarg-3.c
blobfe31de4e6fc5eef6f804231e3b07bf589a32f8a8
1 /* Test variadic functions with no named parameters not supported in C11, but
2 diagnostic disabled with -Wno-c11-c23-compat. */
3 /* { dg-do compile } */
4 /* { dg-options "-std=c11 -pedantic-errors -Wno-c11-c23-compat" } */
6 int f (...);
7 int g (int (...));
8 int h (...) { return 0; }