1 // PR c++/13657
2 
3 class C { public: int (*f())(); int bar(); };
4 int (*C::f())() { return C::bar; } // { dg-error "cannot convert 'C::bar'" }
5