xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.spec/temp.expl.spec/p10.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 template<class T> class X;
4 template<> class X<int>; // expected-note{{forward}}
5 X<int>* p;
6 
7 X<int> x; // expected-error{{incomplete type}}
8