Assignee: unassigned at gcc dot gnu.org
Reporter: qingfeng198325 at 126 dot com
Target Milestone: ---
program Main
implicit none
integer :: ins
type str
character(len=:),allocatable :: CStr(:)
end type
type(str) ::tstr
allocate(character(len=20)::tstr%CStr(20
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78578
--- Comment #2 from zengxiaoqing ---
Program Main
implicit none
integer :: ins
type str
character(len=:),allocatable :: CStr(:)
end type
type(str) ::tstr
allocate(character(len=20)::tstr%CStr(20))
tstr%CStr(1) = "20"
t