(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
gomp/
requires-6.f90
subroutine bar
!$omp atomic
 i = i + 5
end

subroutine foo
!$omp requires atomic_default_mem_order(seq_cst)
end

subroutine foobar
!$omp atomic
 i = i + 5
!$omp requires atomic_default_mem_order(acq_rel) ! { dg-error "Unexpected !.OMP REQUIRES statement" }
end

! { dg-prune-output "not yet supported" }