3 // Simplified from bug report by Tim Rowley <tor@cs.brown.edu>
7 void operator*(baz&, double);
9 template <class T> inline T operator*(double s, const T &p)
10 ; // { dg-bogus "" "" } - must have argument of class type -
12 void m(baz& a) { a * .5; }