rt_gccstream/gcc/testsuite/g++.dg/opt/eh1.C

22 lines
194 B
C

// PR middle-end/14477
// { dg-do compile }
// { dg-options "-O2 -fno-default-inline" }
struct A
{
A();
};
struct B
{
B(const A*);
};
struct C
{
B b;
C(int) : b(new A) {}
};
C c(0);