URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [debug/] [crash1.C] - Rev 762
Go to most recent revision | Compare with Previous | Blame | View Log
template <typename T>
class foo
{
T t;
};
class bar;
typedef foo<bar> foobar;
class obj
{
virtual foobar* yeah() = 0;
};
class bar : virtual public obj
{
};
Go to most recent revision | Compare with Previous | Blame | View Log