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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
special.C
blob
29565d548c886deec339f2f97b27892c173e8c3d
1
// { dg-do assemble }
2
// Make sure that forward declarations of specializations work...
3
4
template <class T> class A { };
5
template <> class A<int>;
6
A<int> a; // { dg-error "" } incomplete type
7
template <> class A<int> { };