Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / dependent2.C
bloba0740d404a3516b7c0703eee1af90e9d0184af0f
1 // PR c++/88757
2 // { dg-do compile { target c++11 } }
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);