2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ext / addrfunc1.C
blob3fec371c28b61ffe24cfccc62c7dbf6ec6c9937d
1 // { dg-do assemble  }
2 // { dg-options "-fms-extensions" }
3 // Test that taking the address of a member function name produces
4 // a pointer to member function.
5 // Contributed by Jason Merrill <jason@cygnus.com>
7 struct A { };
8 int (A::*p)();
10 struct B {
11   int f () { return 0; }
12   void g ();
15 void B::g ()
17   p = (int (A::*)())&f;