c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / allocatable_scalar_6.f90
blobd21e8daea0e9140d79fafcc3605a4fe17fb17217
1 ! { dg-do run }
2 ! { dg-options "-Wall -pedantic" }
4 ! PR fortran/41872
6 ! (De)allocate tests
8 program test
9 implicit none
10 integer, allocatable :: a, b, c
11 integer :: stat
12 stat=99
13 allocate(a, stat=stat)
14 if (stat /= 0) STOP 1
15 allocate(a, stat=stat)
16 if (stat == 0) STOP 2
18 allocate (b)
19 deallocate (b, stat=stat)
20 if (stat /= 0) STOP 3
21 deallocate (b, stat=stat)
22 if (stat == 0) STOP 4
24 deallocate (c, stat=stat)
25 if (stat == 0) STOP 5
26 end program test