summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/anon-struct-7.c
blob: 18790790f314114b1fa683ecddf63fd0f1f147df (plain)
1
2
3
4
5
6
7
8
9
10
/* Test diagnostics for structure member with no type specifier or
   declarator.  Test with -pedantic.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-pedantic" } */

struct s {
  int a;
  const; /* { dg-warning "warning: ISO C forbids member declarations with no members" } */
};