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