repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
complit1.C
blob
00eb23e83b3e29a9da7c4fe4f61237e67aeacdd4
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}) {}
10
11
template class C<1>;