blob: 9f5bcd9b1013436fe9bc0772622f8fc12dd408a3 [file] [log] [blame]
// PR c++/57545
template<typename T, long unsigned int N>
struct array {
T data[N];
};
template<typename T>
struct derived {
typedef long unsigned int size_type;
static const size_type n = 42;
array<int, n> a;
};