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