blob: 74ad30ead6eb2e1235d9bf87f7e4dbbf495776fc [file] [log] [blame]
// { dg-do compile }
// { dg-options "-O1 -ftree-pre -fnon-call-exceptions" }
struct A
{
int i;
};
struct B : A
{
int i[6];
B (int = 0) : A ()
{
m ();
}
int m ();
};
struct C : B
{
};
void
foo ()
{
new C ();
}