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
/
ext
/
vlm1.C
blob
9cb6c38be1523c434c4adcf631844a1e88f8aa47
1
// { dg-options "" }
2
3
template <class T> struct A {};
4
5
struct B {
6
static const int s;
7
A<int[s]> a; // { dg-error "array|template" }
8
};
9
10
const int B::s=16;
11
12
B b;
13