Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.other / ptrmem3.C
blob09ae9db0a8e94b0cd75c3c1884e4af9f2423a36b
1 // { dg-do assemble  }
3 class c {
4   void (c::*x)();
5 public:
6   void f() { this->x(); } // { dg-error "" } pointer-to-member
7 };