URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [net43.C] - Rev 699
Compare with Previous | Blame | View Log
// { dg-do assemble }
// { dg-options "-ffriend-injection" }
class foo {
public:
friend int operator ^(const foo&, const foo&);
};
int main ()
{
int (*funptr) (const foo &, const foo &) = operator ^;
}