blob: e970359f8a80c23697c3b510def076154b0f29a6 [file] [log] [blame]
// { 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;
}