[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git] / flang / test / Semantics / OpenMP / do-schedule01.f90
blob1e0a8a613135c732c5fc851f6db09f33cc383b68
1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
2 ! OpenMP Version 4.5
3 ! 2.7.1 Schedule Clause
4 program omp_doSchedule
5 integer :: i,n
6 real :: a(100), y(100), z(100)
7 !ERROR: The chunk size of the SCHEDULE clause must be a positive integer expression
8 !$omp do schedule(static, -1)
9 do i=2,n+1
10 y(i) = z(i-1) + a(i)
11 end do
12 !$omp end do
13 end program omp_doSchedule