1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
3 ! 2.15.3 Data-Sharing Attribute Clauses
4 ! A list item that specifies a given variable may not appear in more than
5 ! one clause on the same directive, except that a variable may be specified
6 ! in both firstprivate and lastprivate clauses.
13 !ERROR: 'c' appears in more than one data-sharing clause on the same OpenMP directive
14 !$omp parallel shared(/c/,c) private(/c/)