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