You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
383 B
16 lines
383 B
4 months ago
|
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
|
||
|
|
||
|
! OpenMP Version 4.5
|
||
|
! 2.7.2 sections Construct
|
||
|
! Only a single nowait clause can appear on a sections directive.
|
||
|
|
||
|
program omp_sections
|
||
|
|
||
|
!$omp sections
|
||
|
!$omp section
|
||
|
print *, "omp section"
|
||
|
!ERROR: At most one NOWAIT clause can appear on the END SECTIONS directive
|
||
|
!$omp end sections nowait nowait
|
||
|
|
||
|
end program omp_sections
|