OSDN Git Service

* g++.dg/eh/spec4.C: Remove stray semicolon.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / special.C
1 // Make sure that forward declarations of specializations work...
2
3 template <class T> class A { };
4 template <> class A<int>;
5 A<int> a;                       // ERROR - incomplete type
6 template <> class A<int> { };