blob: ab057b3b7ee83a93e59b9785e4f434901c76ec3d [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}) {};
template class C<1>;