blob: 3fec371c28b61ffe24cfccc62c7dbf6ec6c9937d [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-fms-extensions" }
// Test that taking the address of a member function name produces
// a pointer to member function.
// Contributed by Jason Merrill <jason@cygnus.com>
struct A { };
int (A::*p)();
struct B {
int f () { return 0; }
void g ();
};
void B::g ()
{
p = (int (A::*)())&f;
}