https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82970
Andrew Pinski changed:
What|Removed |Added
Last reconfirmed|2017-11-13 00:00:00 |2021-8-2
--- Comment #3 from Andrew Pins
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82970
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82970
--- Comment #1 from G. Steinmetz ---
This variant compiles, of course :
$ cat z3.f90
program p
type t
end type
class(t), allocatable :: x(:)[:]
class(t), allocatable :: z(:)
allocate (x(2)[*])
allocate (z, source=x)
end