(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
overload/
defarg7.C
struct A
{
  A(const char *);
  explicit A(const int *);
};

void f (A a = 0);

int main()
{
  f();
}