Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-stdarg-3.c
blob009292461bd7df02636353fad4f535b9a552eeed
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" } */
6 int f (...);
7 int g (int (...));
8 int h (...) { return 0; }