comparison gcc/testsuite/gcc.dg/declspec-17.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* Test diagnostic for empty declarations in old-style parameter
2 declarations. Test with -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu89 -pedantic-errors" } */
6
7 void
8 f (a, b)
9 int; /* { dg-error "empty declaration" } */
10 register; /* { dg-error "empty declaration" } */
11 {
12 }