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