URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [pr38706.C] - Rev 693
Compare with Previous | Blame | View Log
// PR target/38706
// { dg-do compile }
// { dg-options "-O2" }
class ios_base
{
public:
virtual ~ios_base ();
};
class istrstream:virtual public ios_base
{
public:
virtual ~istrstream ();
};
istrstream::~istrstream () {}