1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
2 ! Ensure that checks on more than one data-sharing clause do not depend upon
8 !ERROR: 'n1' appears in more than one data-sharing clause on the same OpenMP directive
9 !$OMP PARALLEL DO PRIVATE(N1) SHARED(N1)
14 !ERROR: 'n2' appears in more than one data-sharing clause on the same OpenMP directive
15 !$OMP PARALLEL DO SHARED(N2) PRIVATE(N2)