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.