24 at 06:00:18PM +0900, Kazuyoshi Furutaka wrote:
>> Dear gfortran experts...
>>
>> The attached program runs OK, but `ptype`ing using gdb
>> on the deferred-length character array returns empty(?)
>> result, as the following (the results for integer and
>> r
type = real(kind=8), allocatable (8)
(gdb) ptype chararr
type = Type
End Type
Is this a bug?
Kazuyoshi
--
Kazuyoshi Furutaka
furut...@jb3.so-net.ne.jp
program arrays
parameter(num=8)
integer, allocatable :: intarr(:)
real*8, allocatable :: realarr(:)
character(len=:), allocatable