blob: 1b156b770f77280e8ff8d88dd30ffa1cb25628b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Test that parameter without declaration specifiers in old-style
parameters is not accepted. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */
void
f(a)
a; /* { dg-error "parse error|syntax error|no type or storage class|expected declaration specifiers" } */
{
}
|