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 ipa/83051
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
equiv_9.f90
blob
5a226282161cae2fcc61747a6ea3cdcc33b5ae43
1
! { dg-do run }
2
! PR fortran/66377
3
!
4
module
constant
5
integer
x1
,
x2
,
x3
6
integer
x
(
3
)
7
equivalence
(
x
(
1
),
x1
), (
x2
,
x
(
2
)), (
x3
,
x
(
3
))
8
end module
9
10
program
test
11
use
constant
12
implicit none
13
x
= (/
1
,
2
,
3
/)
14
call
another
()
15
end program
16
17
subroutine
another
()
18
use
constant
,
only
:
x2
19
implicit none
20
if
(
x2
/=
2
)
call
abort
21
end subroutine