PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / conv1.C
blob80c7becd66581fd466fdf611cfaf0cfde9667e32
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 { return 0; } // 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>;