repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
ptrmem4.C
blob
4f3f541e583139e7d48ea2ba43397f3660a2465e
1
// Bug: This checks that the pointer-to-member-function type is not
2
// shared between differently-qualified pointer-to-method types.
3
4
// { dg-do compile }
5
struct A
6
{
7
void f () {}
8
};
9
10
void (A::*const cp)() = &A::f;
11
12
int main ()
13
{
14
void (A::* p)();
15
void (A::** ip)() = &p;
16
17
*ip = &A::f;
18
}