[Bug fortran/68440] ICE on declaring class variable with wrong attribute

2015-11-19 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68440 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/68440] ICE on declaring class variable with wrong attribute

2015-11-19 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68440 --- Comment #2 from Gerhard Steinmetz --- Detected : $ cat z7.f90 subroutine s type t end type class(t), allocatable :: x = t() end $ gfortran -g -O0 -Wall -fcheck=all z7.f90 z7.f90:4:29: class(t), allocatable :: x = t()

[Bug fortran/68440] ICE on declaring class variable with wrong attribute

2015-11-19 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68440 --- Comment #1 from Gerhard Steinmetz --- Some variants : $ cat z4.f90 subroutine s type t end type class(t), parameter :: x = t() end $ gfortran -g -O0 -Wall -fcheck=all z4.f90 f951: internal compiler error: Segmentation fault ---