(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
ptrmem9.C
// PR c++/15329

struct S {}; 
 
template <typename> struct X { 
    S s; 
    void foo (void (S::*p)()) 
      { (s.*p)(); } 
};