OpenMP-Examples/sources/Example_nesting_restrict.3.f

19 lines
414 B
Fortran

! @@name: nesting_restrict.3f
! @@type: F-fixed
! @@compilable: no
! @@linkable: no
! @@expect: failure
SUBROUTINE WRONG3(N)
INTEGER N
INTEGER I
!$OMP PARALLEL DEFAULT(SHARED)
!$OMP DO
DO I = 1, N
!$OMP SINGLE ! incorrect nesting of regions
CALL WORK(I, 1)
!$OMP END SINGLE
END DO
!$OMP END PARALLEL
END SUBROUTINE WRONG3