rt_gccstream/gcc/testsuite/g++.dg/torture/pr43879-1_0.C

12 lines
95 B
C

struct A {
int *i;
A();
~A();
};
static int x = 0;
A::A() : i(&x) {}
A::~A() {}