ref: 8a564b2ea4084f554f6ac18034c8fe7fce65966e dir: /tests/cc/execute/0106-ppcast.c/
int main() { int x; void *foo; void **bar; x = 0; foo = (void*)&x; bar = &foo; return **(int**)bar; }