mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
25 lines
510 B
Fortran
25 lines
510 B
Fortran
! @@name: fort_sa_private.2
|
|
! @@type: F-fixed
|
|
! @@compilable: maybe
|
|
! @@linkable: maybe
|
|
! @@expect: rt-error
|
|
PROGRAM PRIV_RESTRICT2
|
|
COMMON /BLOCK2/ X
|
|
X = 1.0
|
|
|
|
!$OMP PARALLEL PRIVATE (X)
|
|
X = 2.0
|
|
CALL SUB()
|
|
!$OMP END PARALLEL
|
|
|
|
CONTAINS
|
|
|
|
SUBROUTINE SUB()
|
|
COMMON /BLOCK2/ Y
|
|
|
|
PRINT *,X ! X is undefined
|
|
PRINT *,Y ! Y is undefined
|
|
END SUBROUTINE SUB
|
|
|
|
END PROGRAM PRIV_RESTRICT2
|