// Build don't link: // Simplified from bug report by Tim Rowley struct baz; void operator*(baz&, double); template inline T operator*(double s, const T &p) ; // gets bogus error - must have argument of class type - XFAIL *-*-* void m(baz& a) { a * .5; }