init-order-atexit-extra.cc revision 2d1fdb26e458c4ddc04155c1d421bced3ba90cd0
1#include <stdio.h>
2
3class C {
4 public:
5  C() { value = 42; }
6  ~C() { }
7  int value;
8};
9
10C c;
11
12void AccessC() {
13  printf("C value: %d\n", c.value);
14}
15
16int main() { return 0; }
17