blob: cecbf54222fa78fc1f3577a4faad9b0b4f30f9e8 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
! OpenMP Version 4.5
! 2.15.3.6 Reduction Clause
program omp_reduction
integer :: i
integer :: k = 10
!ERROR: Invalid reduction identifier in REDUCTION clause.
!$omp parallel do reduction(foo:k)
do i = 1, 10
k = foo(k)
end do
!$omp end parallel do
end program omp_reduction