OSDN Git Service

2006-06-19 Anatoly Sokolov <aesok@post.ru>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Wold-style-definition-2.c
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
8 void bar1 ( ... ) {} /* { dg-error "ISO C requires a named argument" } */
9
10 void bar2 (int a, ... ) {}