blob: 218a7c92908306d1570d39cdd8a935bed31a55bf [file] [log] [blame]
// { dg-options "" }
template <int D> struct C {
int d[3];
C();
};
template<int D>
C<D>::C() : d((int[]){1,2,3}) {} // { dg-error "array" }
template class C<1>;