// RUN: %clang_cc1 -fsyntax-only -verify %s template class X { public: static const T value = 10 / Divisor; // expected-error{{in-class initializer for static data member is not a constant expression}} }; int array1[X::value == 5? 1 : -1]; X xi0; // expected-note{{in instantiation of template class 'X' requested here}} template class Y { static const T value = 0; // expected-warning{{in-class initializer for static data member of type 'const float' is a GNU extension}} }; Y fy; // expected-note{{in instantiation of template class 'Y' requested here}} // out-of-line static member variables template struct Z { static T value; }; template T Z::value; // expected-error{{no matching constructor}} struct DefCon {}; struct NoDefCon { NoDefCon(const NoDefCon&); // expected-note{{candidate constructor}} }; void test() { DefCon &DC = Z::value; NoDefCon &NDC = Z::value; // expected-note{{instantiation}} } // PR5609 struct X1 { ~X1(); // The errors won't be triggered without this dtor. }; template struct Y1 { static char Helper(T); static const int value = sizeof(Helper(T())); }; struct X2 { virtual ~X2(); }; namespace std { class type_info { }; } template struct Y2 { static T &Helper(); static const int value = sizeof(typeid(Helper())); }; template struct Z1 {}; void Test() { Z1::value> x; int y[Y1::value]; Z1::value> x2; int y2[Y2::value]; } // PR5672 template struct X3 {}; class Y3 { public: ~Y3(); // The error isn't triggered without this dtor. void Foo(X3<1>); }; template struct SizeOf { static const int value = sizeof(T); }; void MyTest3() { Y3().Foo(X3::value>()); } namespace PR6449 { template struct X0 { static const bool var = false; }; template const bool X0::var; template struct X1 : public X0 { static const bool var = false; }; template const bool X1::var; template class X0; template class X1; }