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
/
pr77420_2.f90
blob
4826801a2dcecbcbf54cd8feca8151e8f70a52d4
1
! { dg-do compile }
2
module
test_equivalence
3
real
,
private
::
array1
(
100
)
4
real
,
private
::
array2
(
100
)
5
equivalence
(
array1
,
array2
)
6
end module
test_equivalence
7
8
module
mymodule
9
use
test_equivalence
10
real
,
dimension
(:),
allocatable
::
array1
11
end module
mymodule
12
13
program
test
14
use
mymodule
15
end program
test