1 /* PR c/12466
2    Test for not warning about ellipsises with -Wold-style-definition. */
3 
4 /* Origin: Kelley Cook <kcook@gcc.gnu.org> */
5 /* { dg-do compile } */
6 /* { dg-options "-Wold-style-definition" } */
7 
bar1(...)8 void bar1 ( ... ) {} /* { dg-error "ISO C requires a named argument" } */
9 
bar2(int a,...)10 void bar2 (int a, ... ) {}
11