summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/declspec-17.c
blob: 5be737e00d36431f3cbe1c52b2cdda3618b26690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Test diagnostic for empty declarations in old-style parameter
   declarations.  Test with -pedantic-errors.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=gnu89 -pedantic-errors" } */

void
f (a, b)
     int; /* { dg-error "error: empty declaration" } */
     register; /* { dg-error "error: empty declaration" } */
{
}