[Bug fortran/68226] ICE on wrong assignment of function pointer to allocatable

2015-11-07 Thread dominiq at lps dot ens.fr
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

2015-11-05 Thread gerhard.steinmetz.fort...@t-online.de
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)