2021-08-17 09:11:55 -07:00

16 lines
270 B
Fortran

! @@name: tasking.12f
! @@type: F-free
! @@compilable: yes
! @@linkable: no
! @@expect: rt-error
! @@version: omp_3.1
subroutine foo()
integer :: x
x = 2
!$omp task mergeable
x = x + 1
!$omp end task
!$omp taskwait
print *, x ! prints 2 or 3
end subroutine