URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr40388.C] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
void foo();
struct A
{
~A()
{
try
{
foo();
foo();
}
catch (...)
{
}
}
};
void bar()
{
A a1, a2;
}
Go to most recent revision | Compare with Previous | Blame | View Log