* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted29.C
blob8e2989bac0e89e0d5b12d80aee68d322f97efa18
1 // PR c++/46696
2 // { dg-do compile { target c++11 } }
4 struct A
6   A& operator= (A const&);
7 };
9 struct B
11   A ar[1];
12   B& operator= (B const&) = default;
15 int main()
17   B x;
18   B y;
19   y = x;