modernc.org/cc@v1.0.1/v2/testdata/bug/2.c (about)

     1  #include <stdlib.h>
     2  
     3  void foo(char**) {}
     4  
     5  int main() {
     6  	char *p = NULL;
     7  	foo(&p);
     8  	return p != NULL;
     9  }