blob: 9f6202ecf4405b9689c0757f648df62cfd2f36d6 [file] [log] [blame]
// 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> { };