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