foo(char ** c)1 void foo(char **c) { 2 *c = __FILE__; 3 const char **x = c; // produce a diagnostic 4 } 5