2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr43879-1_0.C
blob710f6adfed9feb9765cd7ccc7061726509f317ba
1 struct A {
2     int *i;
3     A();
4     ~A();
5 };
7 static int x = 0;
9 A::A() : i(&x) {}
10 A::~A() {}