c++: Add [dcl.init.aggr] examples to testsuite
[official-gcc.git] / gcc / testsuite / g++.dg / other / default12.C
blob3d7ba5497d086b58971a43c5a0993fb60ea720c9
1 // PR c++/65370
3 template <typename> class C
5   template <typename U>
6   C(const C<U>&, bool = false);
7 };
9 template<>
10 class C<int>
12   template <typename U>
13   C(const C<U>&, bool);
16 template <typename U> C<int>::C(const C<U>&, bool = false) { }  // { dg-error "default arguments" }