Hacker News new | ask | show | jobs
by DaveFlater 844 days ago
In C++ this is simply legal code. But in C, the bogus warning has now escalated to a bogus error.

   void fun110 (char const * const *a) {}
   char **a;
   fun110(a);