mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
14 lines
297 B
Fortran
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
|