aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/equiv_1.f90
blob: b4719fcaa4ab8f95c4ac148b809224023676b109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
program prog 
  common /block/ i
  equivalence (a, b, c), (i, j, k ,l)
  a = 1.0
  b = 2.0
  c = 3.0
  i = 1
  j = 2
  k = 3
  l = 4

  if ((a .ne. 3.0) .or. (b .ne. 3.0) .or. (c .ne. 3.0)) call abort ()
  if ((i .ne. 4) .or. (j .ne. 4) .or. (k .ne. 4) .or. (l .ne. 4)) &
    call abort ()
end program