aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/anon3.C
blob: d2964f5aaf4d8483f12d8e3d87cbc7149b5abc7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// { dg-do assemble  }
// Bug: g++ dies.

class cl {
public:
  cl();
  void set(void *, char *, int);
private:
  union {
    float vf;
    struct ff { // { dg-error "" } nested class in anonymous union
      void *ptr;
      char *name;
      int sz;
    } *vff;
  };
};

void cl::set(void *p, char *n, int sz)
{
    vff = new ff; // This procude an internal compiler error.
    vff->ptr = p;
    vff->name = n;
    vff->sz = sz;
}