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 !BECAUSE: 'k' is not a variable
11 !$omp parallel do reduction(+:k)
17 !ERROR: Variable 'c' on the REDUCTION clause is not definable
18 !BECAUSE: 'c' is not a variable
19 !$omp parallel do reduction(*:/c/)
24 end program omp_Reduction