OpenMP-Examples/sources/Example_associate.1f.f
2015-01-13 11:38:24 -08:00

14 lines
297 B
Fortran

! @@name: associate.1f
! @@type: F-fixed
! @@compilable: no
! @@linkable: no
! @@expect: failure
program example
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