------- Comment #7 from kargl at gcc dot gnu dot org 2010-02-15 21:47 ------- (In reply to comment #6) > What is this? > > REAL, DIMENSION(:), ALLOCATABLE :: TAB > > If not assumed size? > > Also, assuming it is something else, would it be invalid to use the namelist > anywhere if TAB has not been allocated before it is used? >
It's a deferred-shape array. 5.1.2.5.3 Deferred-shape array A deferred-shape array is an allocatable array or an array pointer. 5.1.2.5.4 Assumed-size array An assumed-size array is a dummy argument array whose size is assumed from that of an associated actual argument. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43062