16 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang -fopenmp2 3! OpenMP Version 4.54! 2.7.2 sections Construct5! Only a single nowait clause can appear on a sections directive.6 7program omp_sections8 9 !$omp sections10 !$omp section11 print *, "omp section"12 !ERROR: At most one NOWAIT clause can appear on the END SECTIONS directive13 !$omp end sections nowait nowait14 15end program omp_sections16