From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18973 invoked by alias); 21 May 2012 12:41:57 -0000 Received: (qmail 18963 invoked by uid 22791); 21 May 2012 12:41:56 -0000 X-SWARE-Spam-Status: No, hits=-3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 21 May 2012 12:41:43 +0000 From: "james.kanze at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/53434] New: Compiler decides declaration/expression ambiguity too soon. Date: Mon, 21 May 2012 12:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: james.kanze at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-05/txt/msg02011.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53434 Bug #: 53434 Summary: Compiler decides declaration/expression ambiguity too soon. Classification: Unclassified Product: gcc Version: 4.6.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned@gcc.gnu.org ReportedBy: james.kanze@gmail.com Created attachment 27459 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=27459 Source code for very simple program showing the bug. This may be the same as 37213, but the context is somewhat different. When I compile (simply g++ -c ), I get the following error message: bugInGcc.cc: In function 'void f()': bugInGcc.cc:20:39: error: size of array has non-integral type 'const char [2]' bugInGcc.cc:20:39: error: 'parameter' declared as function returning an array Apparently, g++ is deciding in favor of declaration after seeing C()["a"], despite the fact that a declaration cannot be followed by a . operator.