aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/anon-struct5.C
blob: ec022251cbf57f7bf7d8151b204312d88866ee58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/30302

struct A
{
  struct { static int i; }; // { dg-error "prohibits anonymous structs|an anonymous struct|unnamed class" }
  void foo() { i; }
};

struct B
{
  union { static int i; }; // { dg-error "an anonymous union|member of a union|unnamed class" }
  void foo() { i; }
};