FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / special.C
blob41fae60b9fdba766cc1a6be47d7f5e1754ae8382
1 // Make sure that forward declarations of specializations work...
3 template <class T> class A { };
4 template <> class A<int>;
5 A<int> a;                       // ERROR - incomplete type
6 template <> class A<int> { };