PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / allocatable_scalar_10.f90
blobd648554c6bf41a43434c34003a8484ac8255b1fc
1 ! { dg-do run }
3 ! PR 42647: Missed initialization/dealloc of allocatable scalar DT with allocatable component
5 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
7 type t
8 integer, allocatable :: p
9 end type t
10 type(t), allocatable :: a
12 deallocate(a,stat=istat)
13 if (istat == 0) STOP 1
14 end