* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-84449.C
blobf187c425272988997167fd11576976ec8710d7ed
1 // PR c++/84449
2 // { dg-do compile { target c++11 } }
4 struct A
6   constexpr A (int) {}
7   ~A () = delete;
8 };
10 struct B
12   A a;
13   constexpr B () : a (0) {}     // { dg-error "use of deleted function" }