RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / common_3.f90
blobc5e40aa83b62ea29fa7d130f36e3dfc46900519f
1 ! { dg-do compile }
2 ! Check that equivalences match common block layout.
3 program common_3
4 common /block/ a, b, c, d ! { dg-error "not match ordering" }
5 integer a, b, c, d, n
6 dimension n(4)
7 equivalence (a, n(1))
8 equivalence (c, n(4))
9 end program