Rebase.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ptrmem8.C
blobe6715f336bb0f9a6bf5e386f6468e811bfe343e6
1 // { dg-do assemble  }
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>;