1 // { dg-options "-fshow-column" }
2 struct INCOMPLETE;
3 template <int> struct X {
4     static INCOMPLETE value;
5 };
6 template <> INCOMPLETE X<1>::value = 0; // { dg-error "30:variable 'INCOMPLETE X<1>::value' has initializer but incomplete type" }
7 
8