2 // Copyright (C) 2000, 2002 Free Software Foundation, Inc.
3 // Contributed by Nathan Sidwell 17 Nov 2000 <nathan@codesourcery.com>
5 // bug 43. Two failings, bison parser ickiness caused us to find the member
6 // named the same as a friend, and then when instantiating, we'd lookup in
10 template <class T> class P;
12 template <class T> void operator- (const P<T>&);
20 friend void X::operator-<> (const P<T>& a);