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