OSDN Git Service

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