]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/anon-struct-8.c
Package description and copyright added.
[pkg-cerco/acc.git] / tests / GCCTestSuite / anon-struct-8.c
1 /* Test diagnostics for structure member with no type specifier or
2    declarator.  Test with -pedantic-errors.  */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic-errors" } */
6
7 struct s {
8   int a;
9   const; /* { dg-error "error: ISO C forbids member declarations with no members" } */
10 };