From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14537 invoked by alias); 8 Jul 2009 20:29:54 -0000 Received: (qmail 14424 invoked by uid 48); 8 Jul 2009 20:29:38 -0000 Date: Wed, 08 Jul 2009 20:29:00 -0000 Subject: [Bug c++/40689] New: [C++0x]: error with initializer list in N2672 X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "bernhard dot merkle at googlemail dot com" 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: 2009-07/txt/msg00683.txt.bz2 Hi, I think there is a bug in g++ 4.4 concerning the implementation of initializer list. N2672 The following program does not compiles, but it should be accepted by g++. // /opt/gcc-4.4/bin/g++ --std=c++0x -Wall int main() { class X { public: X(): data {1,2,3,4,5} {} private: const short data[5]; }; const float * pData = new const float[4] { 1.5, 2.5, 3.5, 4.5 }; return 0; } $ /opt/gcc-4.4/bin/g++ -v Using built-in specs. Target: i686-pc-cygwin Configured with: ./configure --prefix=/opt/gcc-4.4 Thread model: single gcc version 4.4.0 (GCC) $ /opt/gcc-4.4/bin/g++ --std=c++0x -Wall g++4.4BugN2672.cpp g++4.4BugN2672.cpp: In constructor 'main()::X::X()': g++4.4BugN2672.cpp:8: error: conversion from '' to non-scalar type 'const short int [5] ' requested g++4.4BugN2672.cpp: In function 'int main()': g++4.4BugN2672.cpp:12: error: ISO C++ forbids initialization in array new g++4.4BugN2672.cpp:12: warning: unused variable 'pData' -- Summary: [C++0x]: error with initializer list in N2672 Product: gcc Version: 4.4.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: bernhard dot merkle at googlemail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40689