3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 29 Dec 2001 <nathan@codesourcery.com>
6 // PR 4361. Template conversion operators were not overloaded.
8 template <class T> struct Second;
10 template<class T> struct First
14 template <class U> operator Second<U>();
15 template <class U> operator First<U>();
18 template <class T> int First<T>::Foo ()
19 {} // This is here to make sure we didn't smash Foo's decl in the
27 First<B> (First<D>::*pf)() = &First<D>::operator First<B>;