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