1 // PR c++/88757
2 // { dg-do compile { target c++11 } }
3 
4 template <class T> struct C {
5     static int x;
6 };
7 template <class U> struct S {
8     static const int size = 1;
9 };
10 template <class T> int C<T>::x(S<T>::size);
11