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