PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / static24.C
blob3d8f9e326bf53d55f1415c46fe6955e60228a06f
1 template<typename> struct A;
3 template<> struct A<char>
5   static const char i = 1;
6 };
8 template<typename T> struct B
10   static const int j = A<T>::i;
11   static const int k = int(j);
12   int x[k];
15 B<char> b;