* c-common.c (get_priority): Add check for
[official-gcc.git] / 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);