aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/addrfunc1.C
blob: 3e254e6f82ba6b5d86a861592f99a7c30c8cb940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Test that taking the address of a member function name produces
// a pointer to member function.
// Contributed by Jason Merrill <jason@cygnus.com>
// Special g++ Options: -fpermissive -w
// Build don't link:

struct A { };
int (A::*p)();

struct B {
  int f () { return 0; }
  void g ();
};

void B::g ()
{
  p = (int (A::*)())&f;
}