1 ! RUN: %python %S/test_errors.py %s %flang_fc1 -fopenmp
3 ! 2.15.3.6 Reduction Clause
6 integer, parameter :: k
= 10
9 !ERROR: Variable 'k' on the REDUCTION clause is not definable
10 !$omp parallel do reduction(+:k)
16 !ERROR: Variable 'c' on the REDUCTION clause is not definable
17 !$omp parallel do reduction(-:/c/)
22 end program omp_Reduction