[Bug fortran/99837] ICE in parse_associate, at fortran/parse.c:4780

kargl at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Feb 28 01:15:13 GMT 2024


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99837

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4

--- Comment #3 from kargl at gcc dot gnu.org ---
(In reply to G. Steinmetz from comment #1)
> Similar cases with "select type" instead :
> 
> $ cat z3.f90
> program p
>    type t
>       integer, allocatable :: a(:)
>    end type
>    class(t) :: x[:]
>    select type (y => x)
>    end select
> end
> 
> $ cat z4.f90
> program p
>    type t
>       integer, allocatable :: a(:)
>    end type
>    class(t) :: x[*]
>    select type (y => x)
>    end select
> end

These test still fail.


More information about the Gcc-bugs mailing list