1 ! RUN: %S/test_errors.sh %s %t %flang_fc1 -fopenmp
4 ! 2.15.3.6 Reduction Clause
7 integer, parameter :: k
= 10
10 !ERROR: Variable 'k' on the REDUCTION clause is not definable
11 !$omp parallel do reduction(+:k)
17 !ERROR: Variable 'c' on the REDUCTION clause is not definable
18 !$omp parallel do reduction(-:/c/)
23 end program omp_Reduction