repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
complit1.C
blob
218a7c92908306d1570d39cdd8a935bed31a55bf
1
// { dg-options "" }
2
3
template <int D> struct C {
4
int d[3];
5
C();
6
};
7
8
template<int D>
9
C<D>::C() : d((int[]){1,2,3}) {} // { dg-error "array" }
10
11
template class C<1>;