URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [inherit6.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// Origin PR c++/47172
// { dg-options "-std=c++0x" }
// { dg-do compile }
struct A
{
int f() const;
};
template <class T>
struct B : A { };
template <class T>
struct C : B<T>
{
void g();
};
template <class T>
void C<T>::g()
{
A::f();
}
Go to most recent revision | Compare with Previous | Blame | View Log