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