From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A3F58388B000; Wed, 3 Jun 2020 15:48:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A3F58388B000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1591199281; bh=jgdITz/+KnUxbDJZfT17ifIBEx2aj8296qjFWvKZOCU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=yc5K1RP9TzCOPc9TRiLuGks/r3zx0qOse1bgOcdvkjTD45ipgoynRC0HjhefJK4+x 9AjW7DXhAaQBf8AwhfXHMtVhhc+atNh0SXY1IBcdtUihWhla8YmxSQ1MlXw56GBg0z DP1ZKKALQfHU8nOtU7YbgSF5SxaTDeJ/MtikGT8k= From: "gscfq@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/95504] ICE in transfer_array_component, at fortran/trans-io.c:2167 Date: Wed, 03 Jun 2020 15:48:01 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: gscfq@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Jun 2020 15:48:01 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95504 G. Steinmetz changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code --- Comment #1 from G. Steinmetz --- With a non-parameterized type instead : $ cat zz1.f90 program p type t integer :: n integer, pointer :: a(:) end type type(t) :: z print *, z end $ gfortran-11-20200531 -c zz1.f90 zz1.f90:7:13: 7 | print *, z | 1 Error: Data transfer element at (1) cannot have POINTER components unless i= t is processed by a defined input/output procedure=