2021-08-17 09:11:55 -07:00

15 lines
325 B
Fortran

! @@name: associate.1f
! @@type: F-fixed
! @@compilable: no
! @@linkable: no
! @@expect: failure
! @@version: omp_4.0
program example_broken
real :: a, c
associate (b => a)
!$omp parallel private(b, c) ! invalid to privatize b
c = 2.0*b
!$omp end parallel
end associate
end program