aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/c99-anon-struct-1.c
blob: 87d4c3438eb7586af1c22d8790297d209f5c0432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Test for anonymous structures and unions not permitted in C99.  */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */

struct s
{
  int a;
  struct
  {
    int b;
  }; /* { dg-error "unnamed structs" } */
};