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