• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
2
3! OpenMP Version 4.5
4! 2.7.2 sections Construct
5! Only a single nowait clause can appear on a sections directive.
6
7program omp_sections
8
9  !$omp sections
10    !$omp section
11    print *, "omp section"
12  !ERROR: At most one NOWAIT clause can appear on the END SECTIONS directive
13  !$omp end sections nowait nowait
14
15end program omp_sections
16