From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2024 invoked by alias); 13 Jul 2010 20:36:05 -0000 Received: (qmail 1987 invoked by uid 48); 13 Jul 2010 20:35:54 -0000 Date: Tue, 13 Jul 2010 20:36:00 -0000 Message-ID: <20100713203554.1986.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug fortran/44929] [OOP] Parsing error of derived type name starting with 'REAL' In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "kargl 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: 2010-07/txt/msg01435.txt.bz2 ------- Comment #5 from kargl at gcc dot gnu dot org 2010-07-13 20:35 ------- > Talking about (c): The following valid program is also rejected: > > real(8),allocatable :: r8 > allocate( real(8) :: r8) > end Hmm. Interesting. real(8),allocatable :: r8 allocate(real(kind=8) :: r8) end works. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44929