2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / conv4.C
blob01f158aeff3a8811dc125822dd74145a1d9a51fb
1 // { dg-do compile }
3 // Copyright (C) 2001, 2002 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 struct C
10   template <typename T2> operator T2 ()
11   {
12     return 1;
13   }
14   int Foo ()
15   {
16     return operator int ();
17   }
20 struct D
22   int Foo ()
23   {
24     return operator int (); // { dg-error "not defined" "" }
25   }