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

template<void> struct A   // { dg-error "not a valid type" }
{
  template<int,int> struct B {};
  template<int N> struct B<N,N> {};
};