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++.old-deja
/
g++.brendan
/
operators6.C
blob
8ac3df13fde21b9a464261fd0f091b9170462de2
1
// { dg-do assemble }
2
// GROUPS passed operators
3
class a {
4
public:
5
a* operator->() { return this; }
6
void p();
7
};
8
9
void a::p() {
10
operator->();
11
}