1struct INCOMPLETE;
2template <int> struct X {
3    static INCOMPLETE value;
4};
5template <> INCOMPLETE X<1>::value = 0; // { dg-error "" }
6
7