summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/anon-struct5.C
blob: 8b697ccbca7964903f2bff3fb3dead5ca1820077 (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" }
  void foo() { i; }
};

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