https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107360

Martin Uecker <muecker at gwdg dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |muecker at gwdg dot de

--- Comment #3 from Martin Uecker <muecker at gwdg dot de> ---

This is likely related to PR108423 and PR107557.

I think there there are cases were variably modified
return types are allowed in ISO C:

void f(int n, double (*(bar(void)))[n])
{
    double (*p)[n] = bar();
}

Reply via email to