URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [inherit/] [virtual7.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// Origin: PR c++/47666
// { dg-do compile }
template <typename T>
struct A
{
int a;
};
template <typename T>
struct B : public A <T>
{
};
class D : public B <D *>
{
virtual D & operator= (const D &);
};
class E : virtual public D
{
};
class F : public E
{
virtual void foo ();
};
Go to most recent revision | Compare with Previous | Blame | View Log