OSDN Git Service

PR c++/20669
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / t27.C
1 // { dg-do assemble  }
2
3 template <class X> int f (X x, int * j) { return 29; }
4 template <class X> int f (X x, ...) { return 23; }
5
6 int foo () {
7   return f (7.0, 9.0);
8 }