2022-11-04 09:35:42 -07:00

15 lines
258 B
Fortran

! @@name: tasking.11
! @@type: F-free
! @@operation: compile
! @@expect: success
! @@version: omp_3.1
subroutine foo()
integer :: x
x = 2
!$omp task shared(x) mergeable
x = x + 1
!$omp end task
!$omp taskwait
print *, x ! prints 3
end subroutine