Daily bump.
[gcc-git-mirror.git] / libgomp / testsuite / libgomp.fortran / task-detach-11.f90
blobb33baff7f687d9e61554ebbe6f228f56b45eafb7
1 ! { dg-do run }
3 ! Test the detach clause when the task is undeferred.
5 program task_detach_11
6 use omp_lib
8 integer (kind=omp_event_handle_kind) :: detach_event
10 !$omp task detach (detach_event)
11 call omp_fulfill_event (detach_event)
12 !$omp end task
13 end program