// Is compiled -fsyntax-only, to make the test's "output" be the warnings from cfa-cpp. int * store = 0p; __attribute__(( constructor(150) )) void ctor_store(void) { store = (int*)malloc(200); } __attribute__(( destructor(150) )) void dtor_store(void) { free(store); store = 0; }