aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/anon.C
blob: 63d17a8cb2d6f2eaa4b8e9558a92c6a3f0410153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Bug: g++ has trouble copying anonymous structs.

typedef struct { int i; } foo;
struct A : public foo { 
  struct { int i; } x;
};

int main ()
{
  A a;
  a.i = 5;
  a.x.i = 42;
  A b (a);
  a = b;
  if (a.i != 5 || a.x.i != 42)
    return 1;
  return 0;
}