https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88488
anlauf at gcc dot gnu.org changed:
What|Removed |Added
CC||anlauf at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88488
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88488
--- Comment #1 from G. Steinmetz ---
Compiles and runs without attribute "parameter" :
$ cat z2.f90
program p
type t
integer :: n = 789
end type
type(t) :: a(2) = t()
type(t) :: b(2)
b = [a]
print *, size(b), b
end
$