8sa1-gcc/gcc/testsuite/g++.old-deja/g++.ext/addrfunc1.C
Jason Merrill d15985c8f8 new
From-SVN: r26453
1999-04-14 08:20:06 -04:00

19 lines
337 B
C

// 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;
}