brintos

brintos / llvm-project-archived public Read only

0
0
Text · 186 B · b81c1e7 Raw
8 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3template<class T> class X; 4template<> class X<int>; // expected-note{{forward}}5X<int>* p; 6 7X<int> x; // expected-error{{incomplete type}}8