blob: 037c63b8fa3496e600c87317b435752d35e9fa52 [file] [log] [blame]
! { dg-do run }
program main
implicit none
integer :: i
i = 0
!$omp task
!$omp target nowait private (i)
i = 1
!$omp end target
!$omp taskwait
!$omp end task
end