From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14884 invoked by alias); 28 Mar 2008 10:32:50 -0000 Received: (qmail 14686 invoked by uid 48); 28 Mar 2008 10:32:04 -0000 Date: Fri, 28 Mar 2008 10:32:00 -0000 Message-ID: <20080328103204.14685.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug fortran/27997] Fortran 2003: Support type-spec for array constructor In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "burnus at gcc dot gnu dot org" 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: 2008-03/txt/msg02255.txt.bz2 ------- Comment #14 from burnus at gcc dot gnu dot org 2008-03-28 10:32 ------- (In reply to comment #13) > Created an attachment (id=15374) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15374&action=view) [edit] > Patch padding for constant character lengths I assume that you have not bootstrapped GCC/gfortran since with that patch it fails when compiling libgfortran/intrinsics/selected_real_kind.f90. Reduced test case: type :: real_info integer :: kind end type real_info type (real_info) :: real_infos(1) = (/ real_info (4) /) end type (real_info) :: real_infos(1) = (/ real_info (4) /) 1 Error: Syntax error in array constructor at (1) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27997