(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr43879-1_0.C
struct A {
    int *i;
    A();
    ~A();
};

static int x = 0;

A::A() : i(&x) {}
A::~A() {}