Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / defarg.C
blob833b98f06be2e96a86761a084003607070c62d5d
1 // { dg-do run  }
2 template <class T>
3 void f(T t, int i = 10);
5 template <class T>
6 void f(T t, int i) {}
8 int main()
10   f(3);