summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/ptrmem4.C
blob: 4f3f541e583139e7d48ea2ba43397f3660a2465e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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;
}