This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/71894] ICE in gfc_add_component_ref, at fortran/class.c:227


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

--- Comment #1 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
A variation :

$ cat za1.f90
program p
   type t
   end type
   class(t) :: x
   class(t), allocatable :: y
   select type (y)
   type is (t)
      y = x
   end select
end

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]