summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocatable_scalar_7.f90
blob: 0963e6fc9026eeb975beb56c7ebc493da7af25e2 (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
! { dg-do run }
!
! PR fortran/41872
!
! Allocatable scalars with SAVE
!
program test
  implicit none
  call sub (0)
  call sub (1)
  call sub (2)
contains
  subroutine sub (no)
    integer, intent(in) :: no
    integer, allocatable, save :: a
    if (no == 0) then
      if (allocated (a)) STOP 1
      allocate (a)
    else if (no == 1) then
      if (.not. allocated (a)) STOP 2
      deallocate (a)
    else
      if (allocated (a)) STOP 3
    end if
  end subroutine sub
end program test