[Bug fortran/78578] New: character(len=:),allocatable :: CStr

2016-11-28 Thread qingfeng198325 at 126 dot com
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

[Bug fortran/78578] character(len=:),allocatable :: CStr(:)

2016-11-28 Thread qingfeng198325 at 126 dot com
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