ref: ab6005654710cbe137c97f50c015271ea1bf315b dir: /tests/cc/execute/0004-pointer.c/
int main() { int x; int *p; x = 4; p = &x; *p = 0; return *p; }