OSDN Git Service

2012-04-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / noncompile / old-style-parm-2.c
1 /* Test that parameter without declaration specifiers in old-style
2    parameters is not accepted.  */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
6
7 void
8 f(a)
9      a; /* { dg-error "parse error|syntax error|no type or storage class|expected declaration specifiers" } */
10 {
11 }