repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
static22.C
blob
02c7a0cd67d5bf4f91bf4df49f834a07f5dd47b6
1
// PR c++/26266
2
3
template<typename> struct A
4
{
5
static const int i = 1;
6
static const int j = i;
7
static const int k = int(j);
8
int x[k];
9
};
10
11
A<char> a;