(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
array18.C
// PR c++/30924

template<typename T>
struct x {};

template<typename T, unsigned N>
struct x<T*[N]> {};

int main() {
  x<int> a;
  x<int*[10]> b;
  return 0;
}