aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/allocatable_scalar_6.f90
blob: 33daee4b848c368852efe1ef3656f7236a8eaaf4 (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 }
! { dg-options "-Wall -pedantic" }
!
! PR fortran/41872
!
!  (De)allocate tests
!
program test
  implicit none
  integer, allocatable :: a, b, c
  integer :: stat
  stat=99
  allocate(a, stat=stat)
  if (stat /= 0) call abort ()
  allocate(a, stat=stat)
  if (stat == 0) call abort ()

  allocate (b)
  deallocate (b, stat=stat)
  if (stat /= 0) call abort ()
  deallocate (b, stat=stat)
  if (stat == 0) call abort ()

  deallocate (c, stat=stat)
  if (stat == 0) call abort ()
end program test