URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [using20.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/51925struct E{int e ();};template <typename T1>struct G : public E{using E::e;template <int> void e ();void f () { e <0> (); }};int f(void){G<int> a;a.f();}
Go to most recent revision | Compare with Previous | Blame | View Log
