From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30665 invoked by alias); 9 Jan 2010 21:29:58 -0000 Received: (qmail 30582 invoked by uid 48); 9 Jan 2010 21:29:49 -0000 Date: Sat, 09 Jan 2010 21:29:00 -0000 Message-ID: <20100109212949.30581.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug fortran/42647] Missed initialization/dealloc of allocatable scalar DT with allocatable component 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: 2010-01/txt/msg01091.txt.bz2 ------- Comment #2 from burnus at gcc dot gnu dot org 2010-01-09 21:29 ------- And of cause it still does not work: module m type st integer , allocatable :: a1 end type st type at integer , allocatable :: a2(:) end type at type t1 type(st), allocatable :: b1 end type t1 type t2 type(st), allocatable :: b2(:) end type t2 type t3 type(at), allocatable :: b3 end type t3 type t4 type(at), allocatable :: b4(:) end type t4 end module m -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42647