ref: fe1c4b0df744e9773a52356baaa91024c8e83e31 dir: /tests/cc/execute/0020-ptrptr.c/
int main() { int x, *p, **pp; x = 0; p = &x; pp = &p; return **pp; }