(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
defarg.C
// { dg-do run  }
template <class T>
void f(T t, int i = 10);

template <class T>
void f(T t, int i) {}

int main()
{
  f(3);
}