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
Remove outermost loop parameter.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
error41.C
blob
c92b8497aff2c791eda1045cd1cc2e8ff1d92727
1
// PR c++/40370
2
// { dg-do compile }
3
4
struct A
5
{
6
static int i;
7
};
8
9
template <int> struct B
10
{
11
int x[A::i]; // { dg-error "array bound is not an integer constant" }
12
};