repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR middle-end/77674
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
common_3.f90
blob
818738e45d377aa9cf630b70898ab9226e2dde6f
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