summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/anon.C
blob: e970359f8a80c23697c3b510def076154b0f29a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do run  }
// 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;
}