blob: 154d03fcff8f2fc32184a505b1f6e77b22f10015 [file] [log] [blame]
// PR c++/20142
// { dg-do run }
int n=4;
struct A
{
A() {}
A& operator= (const A&) { --n; return *this; }
};
struct B
{
A x[2][2];
};
int main()
{
B b;
b = b;
return n;
}