blob: def83462c1e7336f6b899ddde87ed44e07d7e0b2 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %flang -fopenmp
! XFAIL: *
! OpenMP Version 4.5
! 2.7.3 single Construct
! Symbol present on multiple clauses
program omp_single
integer i
i = 10
!$omp single private(i)
print *, "omp single", i
!ERROR: Symbol i present on multiple clauses
!$omp end single copyprivate(i)
end program omp_single