2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / conv1.C
blobe0c7492034ca421f31380c9eab572033ff0f8f98
1 // { dg-do compile }
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
12   int Foo ();
13   
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
20    // method vector
22 struct B { };
23 struct D { };
25 void Foo ()
27   First<B> (First<D>::*pf)() = &First<D>::operator First<B>;