aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/pmf2.C
blob: c3decc2e639acabd1896beb5b40f07a2a774385b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PRMS Id: 4484 (bug 3)
// Bug: g++ does implicitly take the address of methods passed to fns.
// Build don't link:

struct A {
  void f ();
};

void g (void (A::*)());

void h () {
  g (A::f);			// ERROR - failed conversion to method pointer XFAIL *-*-*
}