OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / pmf2.C
1 // PRMS Id: 4484 (bug 3)
2 // Bug: g++ does implicitly take the address of methods passed to fns.
3 // Build don't link:
4
5 struct A {
6   void f ();
7 };
8
9 void g (void (A::*)());
10
11 void h () {
12   g (A::f);                     // ERROR - failed conversion to method pointer XFAIL *-*-*
13 }