URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [ptrmem4.C] - Rev 693
Compare with Previous | Blame | View Log
// 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;
}