aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/defarg.C
blob: 314339d19654e17a1d4db17040e74767d6bc5499 (plain)
1
2
3
4
5
6
7
8
9
10
template <class T>
void f(T t, int i = 10);

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

int main()
{
  f(3);
}