blob: 55e881599357ab92e3a4782fd1b07f7dcabb211c [file] [log] [blame]
// PR c++/15329
struct S {};
template <typename> struct X {
S s;
void foo (void (S::*p)())
{ (s.*p)(); }
};