From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32742 invoked by alias); 7 Apr 2013 18:36:09 -0000 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 Received: (qmail 32697 invoked by uid 48); 7 Apr 2013 18:36:05 -0000 From: "g++bug at oxyware dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/56868] New: Constexpr example in 7.1.5/5 fails to compile correctly Date: Sun, 07 Apr 2013 18:36: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: g++bug at oxyware 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 X-SW-Source: 2013-04/txt/msg00566.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56868 Bug #: 56868 Summary: Constexpr example in 7.1.5/5 fails to compile correctly Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned@gcc.gnu.org ReportedBy: g++bug@oxyware.com // The following example from 7.1.5/5 fails the static assert for g3(0) constexpr int f(void *) { return 0; } constexpr int f(...) { return 1; } constexpr int g1() { return f(0); } constexpr int g2(int n) { return f(n); } constexpr int g3(int n) { return f(n*0); } int main() { static_assert(g1() == 0, "g1 failed"); static_assert(g2(0) == 1, "g2 failed"); static_assert(g3(0) == 1, "g3 failed"); // fails, g3(0) returns 0 not 1 }