1 // PR c++/46930
2 // { dg-do compile { target c++11 } }
3 
4 struct S {
5   static constexpr int size;	// { dg-error "must have an initializer" "must have" }
6 };
7 
8 const int limit = 2 * S::size;
9 constexpr int S::size = 256;
10