ptype on deferred-length character arrays return empty(?) result

2024-10-28 Thread Kazuyoshi Furutaka
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 real arrays are correct ): (gdb) ptype intarr type = integer(kind=4), allocatable (8) (gdb) ptype realarr t

Re: ptype on deferred-length character arrays return empty(?) result

2024-10-28 Thread Steve Kargl
On Mon, Oct 28, 2024 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 > real arrays are correct ): >