[Fortran] OpenACC – permit common blocks in some clauses
[official-gcc.git] / gcc / testsuite / gfortran.dg / deallocate_error_1.f90
blob98ffdb3b91ad156606687593ec7cb3d6def3f180
1 ! { dg-do run }
2 ! { dg-shouldfail "runtime error" }
3 ! { dg-output "At line 14.*Attempt to DEALLOCATE unallocated 'arr'" }
5 ! PR fortran/37507
6 ! Check that locus is printed for DEALLOCATE errors.
8 PROGRAM main
9 IMPLICIT NONE
10 INTEGER, ALLOCATABLE :: arr(:)
12 ALLOCATE (arr(5))
13 DEALLOCATE (arr)
14 DEALLOCATE (arr)
15 END PROGRAM main