Retro68/gcc/libgomp/testsuite/libgomp.fortran/associate1.f90
2018-12-28 16:30:48 +01:00

24 lines
467 B
Fortran

! { dg-do run }
program associate1
integer :: v, i, j
real :: a(3, 3)
v = 15
a = 4.5
a(2,1) = 3.5
i = 2
j = 1
associate(u => v, b => a(i, j))
!$omp parallel private(v, a) default(none)
v = -1
a = 2.5
if (v /= -1 .or. u /= 15) STOP 1
if (a(2,1) /= 2.5 .or. b /= 3.5) STOP 2
associate(u => v, b => a(2, 1))
if (u /= -1 .or. b /= 2.5) STOP 3
end associate
if (u /= 15 .or. b /= 3.5) STOP 4
!$omp end parallel
end associate
end program