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