OSDN Git Service

* treelang/compile/var_defs.tree: Adjust.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / t25.C
1 // { dg-do assemble  }
2
3 template <class X> int f (X x, X y) { return 23; }
4 template <class X> int f (X x, int j = 3) { return 29; }
5
6 int foo () {
7   return f (7);         // { dg-bogus "" } 
8 }