3 ! PR 42647: Missed initialization/dealloc of allocatable scalar DT with allocatable component
5 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
8 integer, allocatable
:: p
10 type(t
), allocatable
:: a
12 deallocate(a
,stat
=istat
)
13 if (istat
== 0) call abort()