Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / scope1.C
blobb017b0bdb9b617b010017e1e43842a6b4f7131be
1 // PR 8327
3 template <class T>
4 class X
6   static const int a = 5;
8   static T b[a];
9 };
11 template <class T> T X<T>::b[X::a];