2017-06-14 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / static25.C
blob20c0c846e3a31e596bb4dc995f37ff845ad9b9a5
1 // PR c++/27819
2  
3 struct A
5   static const char i = 1;
6 };
8 template<int> struct B
10   static const int j = A::i;
11   int x[int(j)];
14 B<0> b;