2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / array-size1.C
blob2bc31f758949a35d8c57941197acb814d3889bd3
1 // PR c++/38
2 // Origin: Wolfgang Bangerth <bangerth@dealii.org>
3 // { dg-do compile }
5 template <int i> struct A
7     static const int n = 1;
8     typedef double X[n];
10     A (const X&);
13 template <int i> A<i>::A (const X&) {}