summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/asan/TestCases/Helpers/init-order-atexit-extra.cpp
blob: e4189d19d0990164d26eb25a4632246f3d60225c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

class C {
 public:
  C() { value = 42; }
  ~C() { }
  int value;
};

C c;

void AccessC() {
  printf("C value: %d\n", c.value);
}

int main() { return 0; }
OpenPOWER on IntegriCloud