aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/t27.C
blob: f3246e8120451c9e3b55eebe7b1673c07dab3ada (plain)
1
2
3
4
5
6
7
8
// Build don't link: 

template <class X> int f (X x, int * j) { return 29; }
template <class X> int f (X x, ...) { return 23; }

int foo () {
  return f (7.0, 9.0);
}