22 lines · plain
1!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=522 3subroutine f004 integer :: obj5!WARNING: SOURCE dependence type is deprecated in OpenMP v5.26!ERROR: A DEPEND clause on a DEPOBJ construct must not have SINK or SOURCE as dependence type7 !$omp depobj(obj) depend(source)8end9 10subroutine f0311 integer :: obj, jbo12!Note: no portability message13!ERROR: The DESTROY clause must refer to the same object as the DEPOBJ construct14 !$omp depobj(obj) destroy(jbo)15end16 17subroutine f0618 integer :: obj19!WARNING: The DESTROY clause without argument on DEPOBJ construct is deprecated in OpenMP v5.220 !$omp depobj(obj) destroy21end22