(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
ptrmem8.C
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
struct S 
{
  void f (const T&);
  void f (T&);
};

class C 
{
};

typedef int (C::*cp)();

template struct S<cp>;