1struct A {
2    int *i;
3    A();
4    ~A();
5};
6
7static int x = 0;
8
9A::A() : i(&x) {}
10A::~A() {}
11
12