blob: 9f38a5cb256a184d9d298a695abfaa05d2c0c3d2 [file] [log] [blame]
// Build don't link:
// Simplified from bug report by Tim Rowley <tor@cs.brown.edu>
struct baz;
void operator*(baz&, double);
template <class T> inline T operator*(double s, const T &p)
; // gets bogus error - must have argument of class type - XFAIL *-*-*
void m(baz& a) { a * .5; }