blob: fd7276a473b73bdd07ee7ba07332f4cc4cdee881 [file] [log] [blame]
// PRMS Id: 4574
// Bug: g++ prefers int to double for float& argument
// Build don't link:
inline double abs (double x) { return x;}
inline int abs (int i) { return i; }
float& fn(float& f)
{
return f;
}
void foo()
{
float f = 23.45;
abs(fn(f)); // gets bogus warning
}