aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/special.C
blob: 9f6202ecf4405b9689c0757f648df62cfd2f36d6 (plain)
1
2
3
4
5
6
// Make sure that forward declarations of specializations work...

template <class T> class A { };
class A<int>;
A<int> a;			// ERROR - incomplete type
class A<int> { };