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