blob: 710f6adfed9feb9765cd7ccc7061726509f317ba [file] [log] [blame]
struct A {
int *i;
A();
~A();
};
static int x = 0;
A::A() : i(&x) {}
A::~A() {}