repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
ptrmem1.C
blob
5bdef2621fea2f730ea634fa59439b346d3fe7c0
1
struct A {
2
virtual void f ();
3
};
4
5
struct B : public A {
6
};
7
8
struct C : public A {
9
};
10
11
struct D : public B, C {
12
virtual void f ();
13
};
14
15
void (D::*p)() = &D::f;