Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / debug / template2.C
blob9f5bcd9b1013436fe9bc0772622f8fc12dd408a3
1 // PR c++/57545
3 template<typename T, long unsigned int N>
4 struct array {
5     T data[N];
6 };
8 template<typename T>
9 struct derived {
10     typedef long unsigned int size_type;
11     static const size_type n = 42;
13     array<int, n> a;