aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr78297.f90
blob: 9c3d1aaab5e7d11889af3b5c0d9151b3c02957dd (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
module m
   real :: a(2), b(2)
   real :: c(2), d(2)
   equivalence (a, b)
   equivalence (c, d)
   common /xcom/ a
end
block data
   use m
end block data