OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / array18.C
1 // PR c++/30924
2
3 template<typename T>
4 struct x {};
5
6 template<typename T, unsigned N>
7 struct x<T*[N]> {};
8
9 int main() {
10   x<int> a;
11   x<int*[10]> b;
12   return 0;
13 }