* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted17.C
blob0a3c0de268afaf468d84ffa610c702363ea54e64
1 // { dg-do compile { target c++11 } }
3 struct A                        // { dg-error "const|operator=" }
5   const int i;
6 };
8 int main()
10   A a = { 0 };
11   a = a;                        // { dg-error "deleted" }