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