1 2 3 4 5 6 7 8 9
#include <stdint.h> extern "C" int32_t baz() { int *a = new int(8); int b = *a; delete a; return b; }