[Bug fortran/68226] ICE on wrong assignment of function pointer to allocatable
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68226 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|
[Bug fortran/68226] ICE on wrong assignment of function pointer to allocatable
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68226 --- Comment #1 from Gerhard Steinmetz --- As a note, a correct code compiles and works : $ cat z1ok.f90 program p type t integer :: n end type type(t), pointer :: a(:) a => f() print *, a contains function f() result(r)