From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4092 invoked by alias); 7 Oct 2003 08:12:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 4080 invoked by uid 48); 7 Oct 2003 08:12:45 -0000 Date: Tue, 07 Oct 2003 08:12:00 -0000 Message-ID: <20031007081245.4078.qmail@sources.redhat.com> From: "reichelt at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20030911210031.12253.stefaandr@hotmail.com> References: <20030911210031.12253.stefaandr@hotmail.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/12253] [tree-ssa] ICE on conversion to std::string inside array initialization X-Bugzilla-Reason: CC X-SW-Source: 2003-10/txt/msg00466.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12253 ------- Additional Comments From reichelt at gcc dot gnu dot org 2003-10-07 08:12 ------- Here's an even simpler testcase without templates, and with fixed array dimension. ======================================= struct A { ~A(); }; struct B { A a; B(int, const A& = A()); }; void foo() { B b[1] = { 0 }; } =======================================