blob: 4f3f541e583139e7d48ea2ba43397f3660a2465e [file] [log] [blame]
// Bug: This checks that the pointer-to-member-function type is not
// shared between differently-qualified pointer-to-method types.
// { dg-do compile }
struct A
{
void f () {}
};
void (A::*const cp)() = &A::f;
int main ()
{
void (A::* p)();
void (A::** ip)() = &p;
*ip = &A::f;
}