aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/common_2.f90
blob: 661e582059ff9d7f99b146dea9f873a233b14b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do run }
! The equivalence was causing us to miss out c when laying out the common
! block.
program common_2
  common /block/ a, b, c, d
  integer a, b, c, d, n
  dimension n(4)
  equivalence (a, n(1))
  equivalence (c, n(3))
  a = 1
  b = 2
  c = 3
  d = 4
  if (any (n .ne. (/1, 2, 3, 4/))) call abort
end program