1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
3 ! 2.7.1 Schedule Clause
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)
13 end program omp_doSchedule