repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
ptrmem1.C
blob
b1174c7d97b34f03dae8c4d3a0ce8911d6843bfe
1
struct A {
2
void f(int = 0) const;
3
};
4
5
typedef void (A::*PF)(int) const;
6
7
void f()
8
{
9
PF pf = &A::f;
10
}