1 // { dg-do compile }
2 
3 // Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 29 Dec 2001 <nathan@codesourcery.com>
5 
6 // PR 4361. Template conversion operators were not overloaded.
7 
8 struct C
9 {
T2C10   template <typename T2> operator T2 ()
11   {
12     return 1;
13   }
FooC14   int Foo ()
15   {
16     return operator int ();
17   }
18 };
19 
20 struct D
21 {
FooD22   int Foo ()
23   {
24     return operator int (); // { dg-error "not defined" }
25   }
26 };
27 
28