// { dg-do assemble }// Test for proper diagnostics on trying to take the address of a non-static// member function.structA{voidf();voidf(int);voidg();};intmain(){Aa;&a.f;// { dg-error "" } overloaded&a.g;// { dg-error "" } can't write a pmf like this}