aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/associate1.f90
blob: e40995515d8e0c19ffea7bcaab5351dcc9d252c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
! { 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) call abort
  if (a(2,1) /= 2.5 .or. b /= 3.5) call abort
  associate(u => v, b => a(2, 1))
  if (u /= -1 .or. b /= 2.5) call abort
  end associate
  if (u /= 15 .or. b /= 3.5) call abort
!$omp end parallel
  end associate
end program