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