URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [friend27.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/15265enum Relation {equalOp};template<typename B>class A {public:staticbool Relop(const A&, const A&, Relation);friendbool operator==(const A& a1, const A& a2) {return Relop(a1, a2, equalOp);}B* b;};int main() {A<int> a; a == a;return 0;}
Go to most recent revision | Compare with Previous | Blame | View Log
