repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
template2.C
blob
9f5bcd9b1013436fe9bc0772622f8fc12dd408a3
1
// PR c++/57545
2
3
template<typename T, long unsigned int N>
4
struct array {
5
T data[N];
6
};
7
8
template<typename T>
9
struct derived {
10
typedef long unsigned int size_type;
11
static const size_type n = 42;
12
13
array<int, n> a;
14
};