Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / overload15.C
blob779de722c41a5d61c9eff323ef8b7732b052cf8b
1 // Bug: g++ thinks that int->long is a promotion.
2 // Build don't link:
4 long f (long, long);
5 double f (double, double);
7 void g (double d)
9   f (d, 0);