https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68440
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
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()
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
---