// PR c++/24569 template struct S { static const int u = 2 * dim; static const int p[u]; static int f(); }; template <> inline int S<3>::f () { return 1; } template const int S::u; template class S<3>;