1 // { dg-do assemble  }
2 
3 class c {
4   void (c::*x)();
5 public:
f()6   void f() { this->x(); } // { dg-error "" } pointer-to-member
7 };
8