[LoopReroll] Add an extra defensive check to avoid SCEV assertion.
[llvm-project.git] / flang / test / Semantics / omp-sections01.f90
blob0a40337685ee0a8448a9a5653cd34cce15120445
1 ! RUN: %S/test_errors.sh %s %t %flang -fopenmp
2 ! REQUIRES: shell
4 ! OpenMP Version 4.5
5 ! 2.7.2 sections Construct
6 ! Only a single nowait clause can appear on a sections directive.
8 program omp_sections
10 !$omp sections
11 !$omp section
12 print *, "omp section"
13 !ERROR: At most one NOWAIT clause can appear on the END SECTIONS directive
14 !$omp end sections nowait nowait
16 end program omp_sections