Files
clang-p2996/flang/test/Semantics/OpenMP/threadprivate07.f90
Kiran Chandramohan 9f0e59f3c1 [Flang][OpenMP] Re-enable tests on windows 2/n (#93013)
Re-enables the single, symbol and threadprivate tests
2024-05-22 18:02:41 +01:00

16 lines
301 B
Fortran

! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
! Check Threadprivate Directive with local variable of a BLOCK construct.
program main
call sub1()
print *, 'pass'
end program main
subroutine sub1()
BLOCK
integer, save :: a
!$omp threadprivate(a)
END BLOCK
end subroutine