diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/coarray_9.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/coarray_9.f90 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/coarray_9.f90 b/gcc/testsuite/gfortran.dg/coarray_9.f90 new file mode 100644 index 000000000..cdfb4dc85 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/coarray_9.f90 @@ -0,0 +1,18 @@ +! { 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 |