Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / array18.C
blobb2b1e3502e1872a8d579ccd780d6c9c819893847
1 // PR c++/30924
3 template<typename T>
4 struct x {};
6 template<typename T, unsigned N>
7 struct x<T*[N]> {};
9 int main() {
10   x<int> a;
11   x<int*[10]> b;
12   return 0;