FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.dg / template / complit1.C
blob00eb23e83b3e29a9da7c4fe4f61237e67aeacdd4
1 // { dg-options "" }
3 template <int D> struct C {
4   int d[3];
5   C();
6 };
8 template<int D>
9 C<D>::C() : d((int[]){1,2,3}) {}
11 template class C<1>;