(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
array28.C
typedef int (A)[];

template<class T> void f(T (*)[1]); // { dg-error "array" }

int main() {
  f<int[]>(0);			// { dg-error "no match" }
}