FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.dg / overload / member1.C
blob29896a5110fafb5441f5a5435e93c2e520954dc8
1 // { dg-do compile }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 29 Sep 2002 <nathan@codesourcery.com>
6 struct X
8   template<typename T> static void ProcessProxy ();
9   typedef void (*Callback) ();
10   void Process (Callback);
11   
12   template<typename T> void Process ()
13   {
14     Process (&ProcessProxy<T>);
15   }
16   
19 void foo (X *x)
21   x->Process<int> ();