Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / overload8.C
blob5c2d8bc026ecdec00e9dfe84a2f8b7b828ae278e
1 // { dg-do assemble  }
3 // Simplified from bug report by Tim Rowley <tor@cs.brown.edu>
5 struct baz;
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; }