llvm-project/flang/test/Semantics/OpenMP/omp-resolve01.f90
PeixinQiao b826d551fc [NFC] Move flang OpenMP semantic tests under one single directory
To be consistent with OpenACC and will find the tests in one single
directory for OpenMP.

Reviewed By: kiranchandramohan

Differential Revision: https://reviews.llvm.org/D127529
2022-06-11 10:46:42 +08:00

16 lines
423 B
Fortran

! RUN: %python %S/../test_errors.py %s %flang -fopenmp
! 2.4 An array section designates a subset of the elements in an array. Although
! Substring shares similar syntax but cannot be treated as valid array section.
character*8 c, b
character a
b = "HIFROMPGI"
c = b(2:7)
!ERROR: Substrings are not allowed on OpenMP directives or clauses
!$omp parallel private(c(1:3))
a = c(1:1)
!$omp end parallel
end