view gcc/testsuite/gfortran.dg/allocatable_scalar_3.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
!
! PR 40996: [F03] ALLOCATABLE scalars
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

implicit none

type :: t
  integer, allocatable :: i
end type

type(t)::x

allocate(x%i)

x%i = 13
print *,x%i
if (.not. allocated(x%i)) STOP 1

deallocate(x%i)

if (allocated(x%i)) STOP 2

end