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