OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / static22.C
1 // PR c++/26266
2
3 template<typename> struct A
4 {
5   static const int i = 1;
6   static const int j = i;
7   static const int k = int(j);
8   int x[k];
9 };
10
11 A<char> a;