repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ptrmem13.C
blob
84374ea05fc0a05842c25262ab6daac9f7e9feec
1
// PR c++/20734
2
3
struct A;
4
void blah(int A::*);
5
struct A{
6
int a;
7
};
8
template<typename T>
9
void hoho(){
10
blah(&A::a);
11
}