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

template<int> void foo()
{
  struct A;                // { dg-message "declaration" }
  struct B : A {};         // { dg-error "invalid use of incomplete" }
}

template void foo<0>();