aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/coarray_9.f90
blob: b613428bcc713bced2676f267aab5108805d9082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do compile }
!
! PR fortran/18918
!
! Check for error if no -fcoarray= option has been given
!

integer :: a
integer :: b[*] ! { dg-error "Coarrays disabled" }

error stop "Error"
sync all !  "Coarrays disabled"  (but error above is fatal)

critical ! "Coarrays disabled"  (but error above is fatal)

end critical ! "Expecting END PROGRAM statement"  (but error above is fatal)

end
! { dg-prune-output "compilation terminated" }