(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
default13.C
// PR c++/85028

struct A;

template < typename > struct B
{
  B (int, A = A()) : f (0) {}  // { dg-error "incomplete type" }
  int f;
};

B < int > b (0);