/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / var-templ10.C
blobece2eb28027558445f3e64e8d4f6b0d3d9080872
1 // { dg-do compile { target c++14 } }
3 template <class T>
4 struct Y
6   template <class U> static U x;
7 };
9 template <class T>
10 template <class U>
11 U Y<T>::x = U();
13 int main()
15   int y = Y<int>::x<int>;