OSDN Git Service

* decl.c (compute_array_index_type): Don't try to do anything with
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / defarg.C
1 template <class T>
2 void f(T t, int i = 10);
3
4 template <class T>
5 void f(T t, int i) {}
6
7 int main()
8 {
9   f(3);
10 }