Files
clang-p2996/flang/test/Semantics/OpenMP/resolve02.f90
Kiran Chandramohan 3323a4bd3d [Flang][OpenMP] NFC: Remove omp prefix of test files in OpenMP Semantics
For tests in the OpenMP sub-directory the `omp` prefix is removed.
2023-02-25 11:21:38 +00:00

19 lines
477 B
Fortran

! RUN: %python %S/../test_errors.py %s %flang -fopenmp
! Test the effect to name resolution from illegal clause
!a = 1.0
b = 2
!$omp parallel private(a) shared(b)
a = 3.
b = 4
!ERROR: LASTPRIVATE clause is not allowed on the PARALLEL directive
!ERROR: 'a' appears in more than one data-sharing clause on the same OpenMP directive
!$omp parallel private(a) shared(b) lastprivate(a)
a = 5.
b = 6
!$omp end parallel
!$omp end parallel
print *,a, b
end