OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / scope1.C
1 // PR 8327
2
3 template <class T>
4 class X
5 {
6   static const int a = 5;
7
8   static T b[a];
9 };
10
11 template <class T> T X<T>::b[X::a];
12