FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ptrmem8.C
blobf6125cdeaf631b10681250344cddccbd1efa1619
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 template <class T>
5 struct S 
7   void f (const T&);
8   void f (T&);
9 };
11 class C 
15 typedef int (C::*cp)();
17 template struct S<cp>;