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
/
crash40.C
blob
e5b1744576557cd20e6dd2759bbe66e1d370af32
1
// { dg-do assemble }
2
// GROUPS passed old-abort
3
class foo {
4
5
public:
6
7
virtual foo &operator <<(foo &(foo::*)(foo &));
8
};
9
10
11
foo &foo::operator<<(foo &(foo::*manip)(foo &))
12
{
13
14
(this->*manip)(*this);
15
16
return *this;
17
}