Commit d15985c8 by Jason Merrill

new

From-SVN: r26453
parent 05345711
// 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment