2 ! Tests the fix for PR20938 in which dependencies between equivalenced
3 ! arrays were not detected.
5 real, dimension (3) :: a
= (/1., 2., 3./), b
, c
6 equivalence (a(2), b
), (a(1), c
)
8 if (any(b
.ne
. (/1., 2., 3./))) call abort ()
10 if (any(b
.ne
. (/1., 1., 2./))) call abort ()