3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 29 Sep 2002 <nathan@codesourcery.com>
8 template<typename T> static void ProcessProxy ();
9 typedef void (*Callback) ();
10 void Process (Callback);
12 template<typename T> void Process ()
14 Process (&ProcessProxy<T>);