1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
3 ! Test the effect to name resolution from illegal clause
7 !$omp parallel private(a) shared(b)
10 !ERROR: LASTPRIVATE clause is not allowed on the PARALLEL directive
11 !ERROR: 'a' appears in more than one data-sharing clause on the same OpenMP directive
12 !$omp parallel private(a) shared(b) lastprivate(a)