aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/nested_allocatables_1.f90
blob: 607a883b707a501120ad15f00317c6716d2f9d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
! { dg-do run }
!
! PR fortran/40850
! The code freeing allocatable components used to be put after the code
! freeing the containing entity.
!
! Original test case by Marco Restelli <mrestelli@gmail.com>
! Reduced by Daniel Franke <franke.daniel@gmail.com>
!        and Janus Weil <janus@gcc.gnu.org>


  type t
    integer, allocatable :: d(:)
  end type
  type(t), allocatable :: a(:)

  ! Big enough to make it fail
  allocate(a(2 * 1024))
  call sub( (/ a /) )

contains

  subroutine sub(b)
    type(t) :: b(:)
  end subroutine

end