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