OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ext / addrfunc1.C
1 // Test that taking the address of a member function name produces
2 // a pointer to member function.
3 // Contributed by Jason Merrill <jason@cygnus.com>
4 // Special g++ Options: -fms-extensions
5 // Build don't link:
6
7 struct A { };
8 int (A::*p)();
9
10 struct B {
11   int f () { return 0; }
12   void g ();
13 };
14
15 void B::g ()
16 {
17   p = (int (A::*)())&f;
18 }