2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / overload15.C
blobfdd692b09eb3a3eac4fb4aaf4adf6287e21dba60
1 // { dg-do assemble  }
2 // Bug: g++ thinks that int->long is a promotion.
4 long f (long, long);
5 double f (double, double);
7 void g (double d)
9   f (d, 0);