http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46028

philipp at marek dot priv.at changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |philipp at marek dot
                   |                            |priv.at

--- Comment #4 from philipp at marek dot priv.at 2011-03-14 10:37:15 UTC ---
This fails, too: "error: storage size of ‘sv’ isn’t constant"

int main(void)
{
    const int len = 20;
    static char sv[len];
}



Similarly, gcc 4.4 accepted 

  #define CONST_STRING "aaa"
  static char x[strlen(CONST_STRING)];

but gcc-4.5 does not.
(Of course, I could overload "strlen" ... but whether that's enough reason to
reject that?)

Reply via email to